Jira Markdown and wiki markup cheat sheet

Updated 18 August 2026

Two different syntaxes get called "Jira markup", and mixing them up is the most common reason formatting silently fails. Cloud is on the left of your mind, Data Center on the right.

Jira Cloud: patterns that convert as you type

WantType
Heading 1–6####### then space
Bold**text**
Italic*text* or _text_
Strikethrough~~text~~
Inline codesingle backticks around the text
Code blockthree backticks at line start
Bulleted list- or * then space
Numbered list1. then space
Task list[] then space
Block quote> then space
Divider--- at line start
Mention@ then the name

These fire on typing. None of them fire on paste: see pasting Markdown into Jira. Tables are the notable absence: pipe tables do not autoformat, see Markdown tables in Jira.

Jira Server / Data Center: wiki markup

WantType
Headingh1.h6. then space
Bold*text*: single asterisks
Italic_text_
Strikethrough-text-
Inline code{{text}}
Code block{code:java}{code}
Preformatted{noformat}{noformat}
Bulleted list* at line start
Numbered list# at line start
Quotebq. or {quote}{quote}
Table||head||head|| then |cell|cell|
Link[text|https://example.com]
Panel{panel:title=T}{panel}

The traps

Disclosure

These notes are written by sellerkit. We build a Markdown editor app for Jira (below), which is why we had to work all of this out in the first place.

Everything above this box works whether or not you install anything. Where a workaround is enough, we say so.