Last active
December 27, 2016 14:04
-
-
Save flexbox/4654508 to your computer and use it in GitHub Desktop.
Here is all the markup for markdown text files
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
Title | |
# h1 | |
## h2 | |
### h3 | |
#### h4 | |
##### h5 | |
###### h6 | |
Blockquote | |
> this is a blockquote. | |
> | |
> David | |
List-item | |
- list | |
- list | |
- list | |
Ordered-list | |
1. ordered list | |
1. ordered list | |
1. ordered list | |
Code | |
4 spaces | |
one tab | |
Use the `printf()` function. | |
Separator | |
- - - | |
Links | |
This is [an example](http://example.com/ "Title") inline link. | |
[This link](http://example.net/) has no title attribute. | |
[This link](http://otherwebsite.com/){:target="_blank"} open in new tab | |
Emphasis | |
_single underscores - italic_ | |
__double underscores - bold__ | |
Images | |
![Alt text](/path/to/img.jpg) | |
![Alt text](/path/to/img.jpg "Optional title") | |
Table | |
--- | |
Title: Content | |
Title: Content | |
Title: Content | |
Title: Content | |
--- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment