Jira to Markdown Converter

Paste Jira wiki markup from tickets or comments and get clean GitHub Flavored Markdown.

Where to find the wiki markup:

  1. In Jira Server/Data Center, open a description or comment and switch to the Text tab of the editor
  2. Copy the raw markup (h2., *bold*, {code}, ||tables||)
  3. Paste it into the input below — the Markdown updates as you type
  4. Copy or download the result for GitHub, GitLab, Obsidian, or any Markdown app

Preview

Release 2.4 checklist

The deploy is ready for review — see the runbook and deploy.sh before you start.

  • Update the changelog
  • Verify staging
  1. Tag the release
  2. Publish the notes
./deploy.sh --env=staging --tag=v2.4.0
Service Status Owner
API Ready Dana
Web Pending Luis

Getting Wiki Markup Out of Jira

Jira Server and Data Center store descriptions and comments as wiki markup. The editor's Text tab shows it raw, and the REST API returns it in the description and body fields — both are ideal sources for this converter. In Jira Cloud, older issues and API responses still carry wiki markup, while the newer editor stores a different format; copying the visible text usually preserves the common constructs that convert directly.

Converting to Markdown is the quickest way to move ticket content into GitHub issues, GitLab, Obsidian notes, documentation sites, or anywhere else Markdown is the native format.

What Gets Converted

h1. – h6. → # headings
*bold*, _italic_, -strike- → Markdown marks
{{monospace}} → `inline code`
{code} and {noformat} → fenced blocks
bq. quotes → > blockquotes
* and # lists → nested - and 1. lists
[text|url] links → [text](url)
||header|| tables → Markdown tables

Superscript, subscript, and inserted text become <sup>, <sub>, and <ins> HTML tags. Complex Jira macros such as {panel}, {color}, user mentions, and issue links have no Markdown equivalent and are not converted — their text is passed through as-is for manual cleanup. Everything runs locally in your browser.

Frequently Asked Questions

What Jira syntax is supported?

Headings, bold/italic/strikethrough/monospace marks, {code} and {noformat} blocks, bq. quotes, * and # lists with nesting, [text|url] links, !image! syntax, and ||header|| tables.

Where do I get the wiki markup from Jira?

In Jira Server/DC, the text editor has a Text tab showing raw markup. In Jira Cloud, paste from the description or comment editor; common constructs convert directly.

Related Tools