Markdown Guide
guideh1 Heading #
h2 Heading #
h3 Heading #
h4 Heading #
h5 Heading #
h6 Heading #
Horizontal Rules #
Emphasis #
This text will be italic
This will also be italic
This text will be bold
This will also be bold
You can combine them
Strikethrough
Blockquotes #
Blockquotes can be written like this
Lists #
Sometimes you want numbered lists:
- One
- Two
- Three
Sometimes you want bullet points:
- Start a line with a star
- Profit!
Alternatively,
- Dashes work just as well
- And if you have sub points, put two spaces before the dash or star:
- Like this
- And this
Code #
Single line var example = true
Multiple lines
if (isAwesome){
return true
}
And if you'd like to use syntax highlighting, include the language:
if (isAwesome) {
return true;
}
console.log("Hello World");
Tables #
Option | Description |
---|---|
row 1 | Lorem ipsum |
row 2 | Hello World |
row 3 | Markdown syntax |
Right aligned columns
Option | Description |
---|---|
row 1 | Lorem ipsum |
row 2 | Hello World |
row 3 | Markdown syntax |