Created
May 22, 2014 19:53
-
-
Save thinkallabout/76952b3d2f812710887f to your computer and use it in GitHub Desktop.
Markdown Kitchen Sink from /adamschwartz/github-markdown-kitchen-sink
This file contains hidden or 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
[View raw (TEST.md)](https://raw.github.com/adamschwartz/github-markdown-kitchen-sink/master/README.md) | |
This is a paragraph. | |
This is a paragraph. | |
Header 1 | |
======== | |
Header 2 | |
-------- | |
Header 1 | |
======== | |
Header 2 | |
-------- | |
# Header 1 | |
## Header 2 | |
### Header 3 | |
#### Header 4 | |
##### Header 5 | |
###### Header 6 | |
# Header 1 | |
## Header 2 | |
### Header 3 | |
#### Header 4 | |
##### Header 5 | |
###### Header 6 | |
# Header 1 # | |
## Header 2 ## | |
### Header 3 ### | |
#### Header 4 #### | |
##### Header 5 ##### | |
###### Header 6 ###### | |
# Header 1 # | |
## Header 2 ## | |
### Header 3 ### | |
#### Header 4 #### | |
##### Header 5 ##### | |
###### Header 6 ###### | |
> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus. | |
> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus. | |
> ## This is a header. | |
> 1. This is the first list item. | |
> 2. This is the second list item. | |
> | |
> Here's some example code: | |
> | |
> Markdown.generate(); | |
> ## This is a header. | |
> 1. This is the first list item. | |
> 2. This is the second list item. | |
> | |
> Here's some example code: | |
> | |
> Markdown.generate(); | |
- Red | |
- Green | |
- Blue | |
+ Red | |
+ Green | |
+ Blue | |
* Red | |
* Green | |
* Blue | |
```markdown | |
- Red | |
- Green | |
- Blue | |
+ Red | |
+ Green | |
+ Blue | |
* Red | |
* Green | |
* Blue | |
``` | |
1. Buy flour and salt | |
1. Mix together with water | |
1. Bake | |
```markdown | |
1. Buy flour and salt | |
1. Mix together with water | |
1. Bake | |
``` | |
Paragraph: | |
Code | |
<!-- --> | |
Paragraph: | |
Code | |
* * * | |
*** | |
***** | |
- - - | |
--------------------------------------- | |
* * * | |
*** | |
***** | |
- - - | |
--------------------------------------- | |
This is [an example](http://example.com "Example") link. | |
[This link](http://example.com) has no title attr. | |
This is [an example] [id] reference-style link. | |
[id]: http://example.com "Optional Title" | |
This is [an example](http://example.com "Example") link. | |
[This link](http://example.com) has no title attr. | |
This is [an example] [id] reference-style link. | |
[id]: http://example.com "Optional Title" | |
*single asterisks* | |
_single underscores_ | |
**double asterisks** | |
__double underscores__ | |
*single asterisks* | |
_single underscores_ | |
**double asterisks** | |
__double underscores__ | |
This paragraph has some `code` in it. | |
This paragraph has some `code` in it. | |
 | |
 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment