[+] Show Supported HTML and Markdown Reference
[-] Hide Supported HTML and Markdown Reference
Note: Supported HTML is automatically converted to Markdown.
Select:
Select:
Emphasis
| Lists
| Headings
| Links
| Images
Emphasis
Type | HTML | Markdown | Example Result |
Italics | <em>Text</em> | *Text* or _Text_ | Text |
Bold | <strong>Text</strong> | **Text** or __Text__ | Text |
Blockquote | <blockquote>Quoted Text<blockquote> | > Quoted Text | Quoted Text |
Inline Code | <code>Inline Code</code> | `Inline Code` | Inline Code |
Code Block | <code>Code Line 1 Code Line 2</code> | ... Code Line 1 Code Line 2 ... | Code Line 1Code Line 2 |
Lists
Type | HTML | Markdown | Example Result |
Unordered List | <ul> <li>List Item</li> </ul> | - List Item 1 - List Item 2 - List Item 3 |
|
Ordered List | <ol> <li>List Item 1</li> </ul> | 1. List Item 1 2. List Item 2 3. List Item 3 |
|
Headings
Type | HTML | Markdown | Example Result |
Heading 1 | <h1>Heading 1</h1> | # Heading 1 or Heading 1 === | Heading 1 |
Heading 2 | <h2>Heading 2</h2> | ## Heading 2 or Heading 2 --- | Heading 2 |
Heading 3 | <h3>Heading 3</h3> | ### Heading 3 | Heading 3 |
Heading 4 | <h4>Heading 4</h4> | #### Heading 4 | Heading 4 |
Heading 5 | <h5>Heading 5</h5> | ##### Heading 5 | Heading 5 |
Heading 6 | <h6>Heading 6</h6> | ###### Heading 6 | Heading 6 |
Links
Type | HTML / Markdown | Example Result |
Quick Link | Markdown: <https://wordquest.org> | https://wordquest.org |
Anchor Link | <a href="https://wordquest.org">Link Anchor</a> [Link Anchor](https://wordquest.org) | Link Anchor |
Anchor Link with Title | <a href="https://wordquest.org" title="WordQuest Alliance">Link Anchor</a> [Link Anchor](https://wordquest.org "WordQuest Alliance") | Link Anchor |
Reference Links | [Link Anchor] [Link Anchor][reference text] [Link Anchor][1] | Link Anchor |
Reference Link URLs | [Link Anchor]: https://wordquest.org [reference text]: https://wordquest.org [1]: https://wordquest.org | * required for reference links, but can be placed anywhere |
Images
Type | HTML / Markdown | Example Result |
Image | <img src="https://wordquest.org/images/wordquest-logo.png"> ![Alt Text](https://wordquest.org/images/wordquest-logo.png) | |
Image with Title | <img src="https://wordquest.org/images/wordquest-logo.png"> ![Alt Text](https://wordquest.org/images/wordquest-logo.png "Image Title") | |
Reference Image | ![Alt Text][reference] ![Alt Text][1] | |
Reference URL | [reference]: https://wordquest.org/images/wordquest-logo.png [1]: https://wordquest.org/images/wordquest-logo.png | * required, place anywhere |