Style Guide


“Come with me, keep quiet, an’ keep yerself covered with that cloak,” said Hagrid. “We won’ take Fang, he won’ like it. . . “Listen, Hagrid, I can’t stay long. . . . I’ve got to be back up at the castle by one o’clock -“ But Hagrid wasn’t listening; he was opening the cabin door and striding off into the night.

Headers

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

H1

H2

H3

H4

H5
H6

Text formatting

- **Bold**
- _Italics_
- ~~Strikethrough~~
- <ins>Underline</ins>
- <sup>Superscript</sup>
- <sub>Subscript</sub>
- Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr>
- Citation: <cite>&mdash; Bill</cite>
  • Bold
  • Italics
  • Strikethrough
  • Underline
  • Superscript
  • Subscript
  • Abbreviation: HTML
  • Citation: — Bill

Lists

1. Ordered list item 1
2. Ordered list item 2
3. Ordered list item 3

* Unordered list item 1
* Unordered list item 2
* Unordered list item 3
  1. Ordered list item 1
  2. Ordered list item 2
  3. Ordered list item 3
  • Unordered list item 1
  • Unordered list item 2
  • Unordered list item 3

Links

Check out this example project on [GitHub](https://github.com/).

Check out this example project on GitHub.

Images

![Image with caption](https://www.fillmurray.com/g/600/400 "Image with caption")
_This is an image with a caption_

Image with caption This is an image with a caption

Code and Syntax Highlighting

Use back-ticks for inline code. Multi-line code snippets are supported too through Pygments.

// Sample javascript code
var s = "JavaScript syntax highlighting";
alert(s);

Adding linenos to the Pygments tag enables line numbers.

1
2
3
// Sample javascript code
var s = "JavaScript syntax highlighting";
alert(s);

Blockquotes

> "Keep quiet, an' keep yerself covered with that cloak," said Hagrid.

“Keep quiet, an’ keep yerself covered with that cloak,” said Hagrid.

Horizontal Rule & Line Break

Use `<hr>` for horizontal rules

<hr>

and `<br>` for line breaks.

<br>

Use <hr> for horizontal rules


and <br> for line breaks.


The end