Markdown.
This commit is contained in:
parent
2c90c3a60c
commit
9615ecfaac
41
markdown.md
41
markdown.md
|
@ -1,14 +1,53 @@
|
|||
title: Markdown
|
||||
----
|
||||
|
||||
## Markdown
|
||||
### Headers
|
||||
|
||||
# h1
|
||||
### h3
|
||||
|
||||
Header 1
|
||||
========
|
||||
|
||||
Header 2
|
||||
--------
|
||||
|
||||
### Links
|
||||
|
||||
[link](http://google.com)
|
||||
|
||||
[link][google]
|
||||
[google]: http://google.com
|
||||
|
||||
### Images
|
||||
|
||||

|
||||

|
||||
![Image alt text][img]
|
||||
|
||||
[img]: http://foo.com/img.jpg
|
||||
|
||||
### Emphasis
|
||||
|
||||
*italic*
|
||||
_italic_
|
||||
|
||||
**bold**
|
||||
__bold__
|
||||
|
||||
### Code
|
||||
|
||||
4 space indent
|
||||
|
||||
### Blockquotes
|
||||
|
||||
> This is
|
||||
> a blockquote
|
||||
>
|
||||
> > Nested
|
||||
> > Blockquote
|
||||
|
||||
### Horizontal line
|
||||
|
||||
----
|
||||
****
|
||||
|
|
Loading…
Reference in New Issue