Formatting text in issues
Written by
To format text in issue descriptions or comments, use Yandex Flavored Markdown syntax. For example, you can format text with italics or bold, as well as add lists and tables.
If you want to see a preview of how the issue description or comment would look after formatting, click Preview. Click Edit to resume formatting.
The basic markup options are listed below.
Element | Markup | Result |
---|---|---|
Headings | # First level header ## Second level header ### Third level header |
![]() |
Bold | **Bold** |
Bold |
Italics | _Italics_ |
Italics |
Bold italics | **_Bold italics_** |
Bold italics |
Also bold italics | _**Also bold italics**_ |
Also bold italics |
Strikethrough | ~~Strikethrough~~ |
|
Underline | ++Underlined text++ |
![]() |
Superscript | Super^script^ |
Superscript |
Monospaced text | ##Monospaced text## |
![]() |
Colored text. Supported colors: red ;green ;blue ;gray ;yellow . |
{blue}(Blue text) |
![]() |
Numbered list | 1. List item. 1. List item. 1. Nested list item. 1. Nested list item. 1. Nested list item. 1. List item. |
![]() |
Bulleted list | * List item. * List item: * Nested list item. * Nested list item. * List item. |
![]() |
Link | [link_text](https://yandex.ru) |
link_text |
URL | To convert a URL or email address into a link, add angle brackets on both sides <>.<https://yandex.ru> |
https://yandex.ru |
Issue link | TEST-123 |
![]() |
Quoted text | > Quoting >> Nested quotes |
![]() |
Collapsed text | {% cut "Read the entire text" %} The content that's displayed on click. {% endcut %} |
![]() |
Table | | Heading1 | Heading2 | | ---------- | ---------- | | Text | Text | | Text | Text | |
![]() |
Multiple-line table | #| || **Heading1** | **Heading2** || || Text on two lines | Text || |# |
![]() |
Source code | `code snippet` |
code snippet |
Multiple-line code block | ```php <? phpinfo(); $s = "Hello, World!\n"; print $s; ``` |
![]() |
Escaping markup elements | \*\*escaping** _markup elements_ |
**escaping** markup elements |