Example Content

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas tincidunt ornare nibh, non elementum augue tempus eget. Pellentesque tempus scelerisque iaculis. Nullam interdum ultricies nibh quis sollicitudin. Donec ornare fermentum facilisis. Ut at sem ac sem imperdiet varius a eget tortor. Nam eu augue eget orci semper maximus in eget augue. Mauris ornare, nisl ut suscipit consectetur, mi quam interdum tellus, at rutrum quam eros ultrices mi.

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; Chester How</cite>
  • Bold
  • Italics
  • Strikethrough
  • Underline
  • Superscript
  • Subscript
  • Abbreviation: HTML
  • Citation: — Chester How

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 tale on [GitHub](https://github.com/chesterhow/tale).

Check out tale on GitHub.

Images

![Placeholder image](https://placehold.it/800x400 "Placeholder image")

![Image with caption](https://placehold.it/700x400 "Image with caption")
_This is an image with a caption_

Placeholder image

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);
# Sample python code
s = "Python syntax highlighting"
print s

Adding linenos to the Pygments tag enables line numbers.

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

Blockquotes

> Curabitur blandit tempus porttitor. Nullam quis risus eget urna mollis ornare vel eu leo. Nullam id dolor id nibh ultricies vehicula ut id elit.

Curabitur blandit tempus porttitor. Nullam quis risus eget urna mollis ornare vel eu leo. Nullam id dolor id nibh ultricies vehicula ut id elit.

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