From 7864db4919587a73cd4f4f09ffb61972758a91d3 Mon Sep 17 00:00:00 2001 From: Barry Clark Date: Sun, 2 Mar 2014 10:32:32 -0500 Subject: Updated posts. --- _posts/2014-2-2-Markdown-Cheatsheet.md | 64 ---------------------------------- 1 file changed, 64 deletions(-) delete mode 100644 _posts/2014-2-2-Markdown-Cheatsheet.md (limited to '_posts/2014-2-2-Markdown-Cheatsheet.md') diff --git a/_posts/2014-2-2-Markdown-Cheatsheet.md b/_posts/2014-2-2-Markdown-Cheatsheet.md deleted file mode 100644 index cf23b79..0000000 --- a/_posts/2014-2-2-Markdown-Cheatsheet.md +++ /dev/null @@ -1,64 +0,0 @@ ---- -layout: post -title: Markdown Style Guide ---- - -A demo of all styled markdown elements in Jekyll Boilerplate. - -This is a paragraph, it's surrounded by whitespace. Next up are some headers, they're heavily influenced by GitHub's markdown style. - -## Header 2 (H1 is reserved for post titles)## -### Header 3 ### -#### Header 4 #### -##### Header 5 ##### - -A link to [Jekyll Boilerplate](http://github.com/barryclark/jekyll-boilerplate/). A big ass literal link - -An image, located within /images - -![an image alt text](/images/omg-code.jpg "an image title") - -* A bulletted list -- alternative syntax 1 -+ alternative syntax 2 - - an indented list item - -1. An -2. ordered -3. list - -Inline markup styles: - -- _italics_ -- **bold** -- `code()` - -> Blockquote ->> Nested Blockquote - -Syntax highlighting can be used by wrapping your code in a liquid tag like so: - -{{ "{% highlight javascript " }}%} -/* Some pointless Javascript */ -var rawr = ["r", "a", "w", "r"]; -{{ "{% endhighlight " }}%} - -creates... - -{% highlight javascript %} - -/* Some pointless Javascript */ -var rawr = ["r", "a", "w", "r"]; - -{% endhighlight %} - -Use two trailing spaces -on the right -to create linebreak tags - -Finally, horizontal lines - ----- -**** - -Enjoy! \ No newline at end of file -- cgit v1.2.3