aboutsummaryrefslogtreecommitdiff
path: root/_posts
diff options
context:
space:
mode:
authorGravatar Barry Clark <barry@barryclark.co> 2014-02-17 20:34:55 -0500
committerGravatar Barry Clark <barry@barryclark.co> 2014-02-17 20:34:55 -0500
commit0df8994e5f44bd42fff2302711bda9a59bcb9dcf (patch)
tree2a72873b8823d45faa0ba19b70f3cdbdee9134f4 /_posts
parent9931bd1ed25bf92afcc7782269281169ebceb578 (diff)
downloadkompetenzbolzen.github.io-0df8994e5f44bd42fff2302711bda9a59bcb9dcf.tar.gz
Style Guide, and all markdown content styled
Diffstat (limited to '_posts')
-rw-r--r--_posts/2014-2-2-Markdown-Cheatsheet.md63
-rw-r--r--_posts/2014-2-3-Oh-hi.md10
-rw-r--r--_posts/2014-4-4-Jekyll-The-Easy-Way.md4
3 files changed, 75 insertions, 2 deletions
diff --git a/_posts/2014-2-2-Markdown-Cheatsheet.md b/_posts/2014-2-2-Markdown-Cheatsheet.md
new file mode 100644
index 0000000..59c70ef
--- /dev/null
+++ b/_posts/2014-2-2-Markdown-Cheatsheet.md
@@ -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
+
+![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
+
+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! \ No newline at end of file
diff --git a/_posts/2014-2-3-Oh-hi.md b/_posts/2014-2-3-Oh-hi.md
new file mode 100644
index 0000000..4dad732
--- /dev/null
+++ b/_posts/2014-2-3-Oh-hi.md
@@ -0,0 +1,10 @@
+---
+layout: post
+title: Oh, Hi!
+---
+
+This is a demo site for Jekyll Boilerplate. It was made in just a few minutes—by forking [Jekyll Boilerplate](http://github.com/barryclark/jekyll-boilerplate/)!
+
+Jekyll boilerplate is a starting point for creating your blog using Jekyll and GitHub Pages. It make it _really easy_.
+
+Talk through benefits. \ No newline at end of file
diff --git a/_posts/2014-4-4-Jekyll-The-Easy-Way.md b/_posts/2014-4-4-Jekyll-The-Easy-Way.md
index 7eccc1a..d107d42 100644
--- a/_posts/2014-4-4-Jekyll-The-Easy-Way.md
+++ b/_posts/2014-4-4-Jekyll-The-Easy-Way.md
@@ -5,10 +5,10 @@ title: Jekyll The Easy Way
I just migrated my blog over to this Jekyll powered static site that you're currently reading. Finding a good workflow with Jekyll took me longer than I expected.
-When you understand how Jekyll works, it's _extremely_ fast to set up. However when learning I came across lot of articles, repos and stack overflow threads that made the setup much more complicated than it needs to be.
-
![cool code image aww yea](/images/omg-code.jpg)
+When you understand how Jekyll works, it's _extremely_ fast to set up. However when learning I came across lot of articles, repos and stack overflow threads that made the setup much more complicated than it needs to be.
+
### Jekyll is built for one specific purpose
Tom Preston Warner of Github build Jekyll to [[INSERT HERE EXCERT FROM TPW's blog]]