We have a new documentation site. Please go here to see the latest.
Markdown
Introduction
Single line checklist item as well as multiline description can contain selected Markdown elements. See below for supported Markdown syntax.
Apart from Markdown, Issue Checklist also supports other advanced formatting elements like description, user mentions, due dates, and issue keys that will be automatically linked to issues, etc.
Example
Markdown formatting
Bold
To bold text, add two asterisk or underscore characters before and after a word or phrase, e.g.,
Markdown text | Rendered output |
|---|---|
|
|
|
|
Italic
To italic text, add one asterisk or underscore character before and after a word or phrase, e.g.,
Markdown text | Rendered output |
|---|---|
|
|
|
|
Strikethrough
To strikethrough text, add two tilde characters before and after a word or phrase, e.g.,
Markdown text | Rendered output |
|---|---|
|
|
Inline code
To style text as inline code, add back-tick characters before and after a word or phrase, e.g.,
Markdown text | Rendered output |
|---|---|
|
|
Links
To create a link:
add URL directly into the text, or
enclose the link text in brackets e.g.,
[Issue Checklist]and then follow it immediately with the URL in parentheses e.g., (http://gebsun-support.com):
Markdown text | Rendered output |
|---|---|
|
|
|
|
Emails @
To create an email link:
add the email address directly into text, or
enclose the link text in brackets e.g., [Contact us] and then follow it immediately with a mailto data (this way you can specify email subject too):
Markdown text | Rendered output |
|---|---|
|
|
|
Markdown escaping
It is possible to display Markdown formatting character by escaping it with the backslash \ character like demonstrated below.
Markdown text | Rendered output |
|---|---|
Escaped \_italic\_ formatting | Escaped _italic_ formatting |
Escaped \_italic_ formatting | Escaped _italic_ formatting |
Escaped \**bold\** formatting | Escaped **bold** formatting |
Escaped \**bold** formatting | Escaped **bold** formatting |
Escaped \*\*bold\*\* formatting | Escaped **bold** formatting |
Escaped \**bold\\** formatting containing backslash | Escaped **bold\** formatting containing backslash |
Escaped \`inline code\` formatting | Escaped `inline code` formatting |
Escaped back-tick \` character | Escaped back-tick ` character |
Standard text with \ backslash | Standard text with \ backslash |
Please note that in the column Rendered output:
formatting is not applied due to backslash \ usage
backslash \ is not displayed when it is used to escape Markdown
double backslash allows to display a single backslash inside Markdown formatted phrase
backslash behaves like a normal character when used outside Markdown formatted phrase