Style Guide, and all markdown content styled
This commit is contained in:
parent
9931bd1ed2
commit
0df8994e5f
10 changed files with 194 additions and 57 deletions
63
_posts/2014-2-2-Markdown-Cheatsheet.md
Normal file
63
_posts/2014-2-2-Markdown-Cheatsheet.md
Normal file
|
@ -0,0 +1,63 @@
|
|||
---
|
||||
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 <http://github.com/barryclark/jekyll-boilerplate/>
|
||||
|
||||
An image, located within /images
|
||||
|
||||

|
||||
|
||||
* 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
|
||||
|
||||
Code:
|
||||
|
||||
// Code is just text indented a bit
|
||||
which(is_easy) to_remember();
|
||||
|
||||
~~~
|
||||
|
||||
// Markdown extra adds un-indented code blocks too
|
||||
|
||||
if (this_is_more_code == true && !indented) {
|
||||
// tild wrapped code blocks, also not indented
|
||||
}
|
||||
|
||||
~~~
|
||||
|
||||
Use two trailing spaces
|
||||
on the right
|
||||
to create linebreak tags
|
||||
|
||||
Finally, horizontal lines
|
||||
|
||||
----
|
||||
****
|
||||
|
||||
Enjoy!
|
Loading…
Add table
Add a link
Reference in a new issue