GitHub Markdown CSS (Min)

Headers

# H1
## H2
### H3
#### H4
##### H5
###### H6

H1

H2

H3

H4

H5
H6

Emphasis

Emphasis, aka italics, with *asterisks* or _underscores_.

Strong emphasis, aka bold, with **asterisks** or __underscores__.

Strikethrough uses two tildes. ~~Scratch this.~~

Emphasis, aka italics, with asterisks or underscores.

Strong emphasis, aka bold, with asterisks or underscores.

Strikethrough uses two tildes. ~~Scratch this~~.

Images

Here's an example of an image:

![Panda](https://cdn.britannica.com/80/150980-050-84B9202C/Giant-panda-cub-branch.jpg)

Here's an example of an image:

Panda

Lists

- Unordered lists, and:
    1. One
    2. Two
    3. Three
- More

Code and Syntax Highlighting

Code blocks are useful with hightlight.js.

Inline `code` has `back-ticks around` it.

Inline code has back-ticks around it.
Note: Inline code should be in <code> tags when converted to HTML.

Code blocks are fenced by lines with three back-ticks ```.
Note: Code blocks should be in <pre><code> tags when converted to HTML.

var s = "JavaScript syntax highlighting";
alert(s);
s = "Python syntax highlighting"
print(s)

Tables

Colons can be used to align columns.

Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3

Colons can be used to align columns.

Markdown Less Pretty
Still renders nicely
1 2 3

Blockquotes

> Blockquotes sometimes are useful to emulate reply text.
> This line is part of the same quote.

Quote break.

> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.

Blockquotes sometimes are useful to emulate reply text.
This line is part of the same quote.

Quote break.

This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can put Markdown into a blockquote.

Horizontal Rule

Horizontal rule divides two sections with a horizontal line.
Create a horizontal rule with three hyphens:
---

Horizontal rule divides two sections with a horizontal line.
Create a horizontal rule with three hyphens: