forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Style Guide, and all markdown content styled
- Loading branch information
1 parent
9931bd1
commit 0df8994
Showing
10 changed files
with
194 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.