#Markdown Cheatsheet Markdown is a short-hand syntax for easily converting text to HTML. Below are some popular examples of Markdown formatting. For more examples reference Markdown Basics for a more detailed overview.
Links This is an example link
Code Wrap your code with 3 backticks (```) on the line before and after. If you specify the language after the first set of backticks, that'll help us with syntax highlighting.
```html
<p>This is code!</p>
```
Quoting If you're replying to someone, you can copy portions of their text into your reply, and mark them as quotations by putting > at the start of each line.
> This line is quoted.
Italic Here’s a word that is emphasized
Bold Here’s a word that is bold
Unordered List
- Candy
- Gum
- Peanuts
Ordered List
- Red
- Green
- Blue
Click here to learn more.