Markdown Reference Guide

Hi all, our forum uses markdown syntax to help you format your posts. This is just a quick reference post to help you out!

1. Headings

Raw Markdown:

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Rendered:

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

2. Bold & Italic Text

Raw Markdown:

*Italic Text*
_Italic Text (alternative syntax)_

**Bold Text**
__Bold Text (alternative syntax)__

***Bold and Italic***

Rendered:

Italic Text
Italic Text (alternative syntax)

Bold Text
Bold Text (alternative syntax)

Bold and Italic


3. Lists

Unordered List

Raw Markdown:

- Item 1
- Item 2
- Item 3

Rendered:

  • Item 1
  • Item 2
  • Item 3

Ordered List

Raw Markdown:

1. Step One
2. Step Two
3. Step Three

Rendered:

  1. Step One
  2. Step Two
  3. Step Three

4. Links

Raw Markdown:

[Markdown-It Online Demo](https://markdown-it.github.io/)

Rendered: Markdown-It Online Demo


5. Images

Raw Markdown:

![Markdown Logo](http://ddc-talk.com/uploads/default/original/1X/f7e7fd17e8896a36d2719f930aab0fd2b0b778dc.png)

Rendered:


6. Blockquotes

Raw Markdown:

> This is a blockquote.
>
> It can span multiple lines.

Rendered:

This is a blockquote.

It can span multiple lines.


7. Code Blocks

Surround code with three backticks ``` for multi-line code blocks or single backticks ` for inline code.

Raw Markdown:

 ``` function greet(name) { return `Hello, ${name}!`; } ``` 

Rendered:

function greet(name) {
  return `Hello, ${name}!`;
}

For inline code, use backticks:

This is `inline code`.

Result: This is inline code.


8. Horizontal Rule

Use three or more dashes, asterisks, or underscores on a line by themselves.

Raw Markdown:

---

Rendered:


9. Tables

Raw Markdown:

| Column A | Column B |
|----------|----------|
| Value 1  | Value 2  |
| Value 3  | Value 4  |

Rendered:

Column A Column B
Value 1 Value 2
Value 3 Value 4
2 Likes