Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Introduction

Info

Single line checklist item as well as multiline description can contain selected Markdown elements. See below for supported Markdown syntax.

...

Info

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 textRendered output
I love **bold text**.I love bold text.
I love __bold text__.I love bold text.

Italic

To italic text, add one asterisk or underscore character before and after a word or phrase, e.g.,

Markdown textRendered output
I love *italic text*.I love italic text.
I love _italic text_.I love italic text.

Strikethrough

To strikethrough text, add two tilde characters before and after a word or phrase, e.g.,

Markdown textRendered output
I love ~~strikethrough text~~.I love strikethrough text.

Inline code

To style text as inline code, add back-tick characters before and after a word or phrase, e.g.,

Markdown textRendered output
I type `inline code`.I type inline code.

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):

...