Markdown
A complete reference showcasing and demonstrating the use of Markdown elements on the Discourse forums. For an interactive tutorial visit CommonMark.
Contents
Headings
Used to create styled headings.
Demo:
Text Formatting
Applies basic styles to text.
Demo:
italic
_italic_
*italic*
bold
__bold__
**bold**
strikethrough~~strikethrough~~
quote
quote> quote > quote
code
`code`
<div> codeblock </div>
``` <div> codeblock </div> ```
<div>
codeblock
</div>* Lines are indented with 4 spacesLinks
Creates a hyperlink to a URL address. URL addresses may include other websites, email addresses, files or even locations within the same webpage.
Demo:
[WackyWriters Forum!][1]
[1]: https://forum.wackywriters.com/Horizontal Rule
Inserts a horizontal line spanning the width of the container to visually separate content.
The background of the demo box has been darkened to improve contrast.
Demo:
Line 1
Line 2
Line 1
---
Line 2Line 1
***
Line 2Line 1
___
Line 2Images
Used to display images.
Demo:
![Legacy WackyWriters Logo](https://storage.wackywriters.com/original/2X/1/15ea83bc7eaf249cc758b6b18b1e83d677760ca9.png)
![Legacy WackyWriters Logo][Wacky Source]
[Wacky Source]: https://storage.wackywriters.com/original/2X/1/15ea83bc7eaf249cc758b6b18b1e83d677760ca9.pngLists
Used to create order, unordered or check lists.
Demo:
- Item 1
- Item 2
* Item 1 * Item 2
+ Item 1<br>+ Item 2
- Item 1<br>- Item 2
- Item 10
- Item 11
10) Item 10
11) Item 1110. Item 10
11. Item 11Item 1
Item 2[x] Item 1
[ ] Item 2Tables
Creates a table used for storing and organising information.
Demo:
Heading 1 Heading 2 Heading 3 Cell Cell Cell Cell Cell Cell | Heading 1 | Heading 2 | Heading 3 | | --------- |:---------:| ---------:| | Cell | Cell | Cell | | Cell | Cell | Cell |
Back to HTML Reference
Spot something we didn't? Let us know!