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](http://example.com/)
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**
Images
![alt text](/path/to/img.jpg "Title")
You'll first need to host your image on an image host, such as https://imgur.com and then take the URL of your hosted image and use that as your image path.
Unordered List
+ Candy
+ Gum
+ Peanuts
Ordered List
1. Red
2. Green
3. Blue

Still need help? Contact Us Contact Us