From db5494dff0b2b8b344f37a2fa1d2f8b9c450098f Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Sat, 6 Jan 2018 12:12:53 +0000 Subject: Initial commit --- _posts/2018-01-01-example-content.md | 136 +++++++++++++++++++++++++++++++++++ 1 file changed, 136 insertions(+) create mode 100644 _posts/2018-01-01-example-content.md (limited to '_posts') diff --git a/_posts/2018-01-01-example-content.md b/_posts/2018-01-01-example-content.md new file mode 100644 index 0000000..ac02a02 --- /dev/null +++ b/_posts/2018-01-01-example-content.md @@ -0,0 +1,136 @@ +--- +layout: post +title: "Example Content" +author: "Valentin Popov" +--- + +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 +{% highlight markdown %} +# H1 +## H2 +### H3 +#### H4 +##### H5 +###### H6 +{% endhighlight %} + +# H1 +## H2 +### H3 +#### H4 +##### H5 +###### H6 + +# Text formatting +{% highlight markdown %} +- **Bold** +- _Italics_ +- ~~Strikethrough~~ +- Underline +- Superscript +- Subscript +- Abbreviation: HTML +- Citation: — Chester How +{% endhighlight %} + +- **Bold** +- _Italics_ +- ~~Strikethrough~~ +- Underline +- Superscript +- Subscript +- Abbreviation: HTML +- Citation: — Chester How + +# Lists +{% highlight markdown %} +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 +{% endhighlight %} + +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 +{% highlight markdown %} +Check out tale on [GitHub](https://github.com/chesterhow/tale). +{% endhighlight %} + +Check out tale on [GitHub](https://github.com/chesterhow/tale). + +# Images +{% highlight markdown %} +![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_ +{% endhighlight %} + +![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_ + +# Code and Syntax Highlighting +Use back-ticks for `inline code`. Multi-line code snippets are supported too through Pygments. + +{% highlight js %} +// Sample javascript code +var s = "JavaScript syntax highlighting"; +alert(s); +{% endhighlight %} + +{% highlight python %} +# Sample python code +s = "Python syntax highlighting" +print s +{% endhighlight %} + +Adding `linenos` to the Pyments tag enables line numbers. + +{% highlight js linenos %} +// Sample javascript code +var s = "JavaScript syntax highlighting"; +alert(s); +{% endhighlight %} + +# Blockquotes +{% highlight markdown %} +> Curabitur blandit tempus porttitor. Nullam quis risus eget urna mollis ornare vel eu leo. Nullam id dolor id nibh ultricies vehicula ut id elit. + +{% endhighlight %} + +> 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 +{% highlight markdown %} +Use `
` for horizontal rules + +
+ +and `
` for line breaks. + +
+{% endhighlight %} + +Use `
` for horizontal rules + +
+ +and `
` for line breaks. + +
+ +_The end_ -- cgit v1.2.3