| Markup | Example | Result | 
|---|---|---|
| Quote / green text | Add > at the beginning of the line: > Green quote | > Green quote | 
| Link to post | Add >> before the post number: 
						Here is the link to the post >>42836
					 | Here is the link to the post >>42836 | 
| Link with text | Enclose the link text in square brackets [ ], and then the URL in parentheses ( ): 
						Here is a link to [useful site](https://youtu.be/dQw4w9WgXcQ)
					 | Here is a link to useful site | 
| Unformatted text | Enclose it in backticks ` `: 
						Here is `[text](https://youtu.be/dQw4w9WgXcQ)` in the line
					 | Here is [text](https://youtu.be/dQw4w9WgXcQ)in the line | 
| Code / plain text block | 
						Here is the code block: [code] for(let i = 1, len = els.length; i < len; ++i) { if(!els[i].checked) { continue; } } [/code] | Here is the code block: 
for(let i = 1, len = els.length; i < len; ++i) {
    if(!els[i].checked) {
        continue;
    }
}
 | 
| Bold text | 
						Here is the **bold text** in the line
					 | Here is the bold text in the line | 
| Bold text | 
						Here is a block of [b]bold text several lines long[/b] | Here is a block of bold text several lines long | 
| Italic text | 
						Here is *italic text* in the line
					 | Here is italic text in the line | 
| Italic text | 
						Here is a block of [i]italic text several lines long[/i] | Here is a block of italic text several lines long | 
| Underlined text | 
						Here is __underlined text__ in the line
					 | Here is underlined text in the line | 
| Underlined text | 
						Here is a block of [u]underlined text several lines long[/u] | Here is a block of underlined text several lines long | 
| Strikethrough text | 
						Here is ~~strikethrough text~~ in the line
					 | Here is | 
| Strikethrough text | 
						Here is a block of [s]strikethrough text several lines long[/s] | Here is a block of several lines long | 
| Spoiler (hidden text) | To see the hidden text later, hover over it with cursor. 
						Here is %%hidden textт%% in the line
					 | Here is hidden text in the line | 
| Spoiler (hidden text) | 
						Here is a block of [spoiler]hidden text several lines long[/spoiler] | Here is a block of hidden text several lines long |