Markdown syntax allows you to format text in order to add emphasis and style, and make it easier to read.
This article can be used as a quick reference, a kind of 'cheat-sheet', for markdown that can be used when designing your form.
Markdown | Example | Output |
Italics: Wrap text in single asterisk * or underscore _ | *italics* or _italics_ | italics |
Bold: Wrap text in double asterisk ** or underscore __ | **bold** or __bold__ | bold |
Bold & Italics: Wrap text in triple asterisk *** or underscore ___ | ***bold and italics*** or ____bold and italics___ | bold and italics |
URL link: [text](URL link) | [Mobenzi](https://www.mobenzi.com/) | Mobenzi |
Line breaks: <br> | This is the first line.<br>This is the second line. | This is the first line. This is the second line. |
Heading: # | # Heading 1 ## Heading 2 ### Heading 3 | Heading 1 Heading 2 Heading 3 |
Bullet list: Single asterisk before each item | Text example<br>* Item <br>* Item | Text example
|