Skip to content

Latest commit

 

History

History
141 lines (105 loc) · 2.85 KB

File metadata and controls

141 lines (105 loc) · 2.85 KB
labels supported-format,markdown,reference

Markdown - Basics

[TOC]

Text styling

All basic styling features are supported — text can be

Markdown Confluence
**bold** bold
_italic_ italic
~~strikethrough~~ strikethrough
With ~subscript~ and ^superscript^ With subscript and ^superscript^
Mixed one like **bold with _emphasis_ part**, all ***bold and italic*** Mixed one like bold with emphasis part, all bold and italic

You can also use quotation blocks:

MarkdownConfluence
> This is a quote
>
> Spanning multiple paragraphs **styled** and `monoscript`

This is a quote

Spanning multiple paragraphs styled and monoscript

Lists

Both numbered and bullet lists are supported:

MarkdownConfluence
1. one
2. two
3. three
    * unordered
    * list
    * as nested
        1. And ordered
        2. again
  1. one
  2. two
  3. three
    • unordered
    • list
    • as nested
      1. And ordered
      2. again

Simple task lists are supported too, but due to limitations of Confluence no mixed items are supported.

This will work:

MarkdownConfluence
* [ ] not done
* [x] done
  • not done
  • done

But this will not work:

MarkdownConfluence
* [ ] not done
* [x] done
* simple item
  • not done
  • done
  • simple item

Emojis 🚀

You can embed emojis supported in unicode by using :emoji-code:. In some cases it is way easier compared to putting just unicode symbol.

Markdown Confluence
:metal: 🤘

You can find supported codes on emoji cheat sheet page.