l1n6yun's Blog

记录学习的技能和遇到的问题

0%

Standard Markdown

Standard Markdown

Strong and Emphasize

1
2
*emphasize*   **strong**
_emphasize_ __strong__

Inline:

1
An [example](http://url.com/ "Title")

Reference-style labels (titles are optional):

1
2
3
4
5

An [example][id]. Then, anywhere
else in the doc, define the link:

[id]: http://example.com/ "Title"

Email:

1
An email <example@example.com> link.

Images

Inline (titles are optional):

1
![alt text](/path/img.jpg "Title")

Reference-style:

1
2
3
![alt text][id]

[id]: /url/to/img.jpg "Title"

Headers

1
2
3
4
5
6
7
Setext-style:

Header 1
========

Header 2
--------

atx-style (closing #’s are optional):

1
2
3
4
5
# Header 1 #

## Header 2 ##

###### Header 6

Lists

Ordered, without paragraphs:

1
2
1.  Foo
2. Bar

Unordered, with paragraphs:

1
2
3
4
5
*   A list item.

With multiple paragraphs.

* Bar

You can nest them:

1
2
3
4
5
6
7
8
*   Abacus
* answer
* Bubbles
1. bunk
2. bupkis
* BELITTLER
3. burper
* Cunning

Blockquotes

1
2
3
4
5
6
7
8
9
> Email-style angle brackets
> are used for blockquotes.

> > And, they can be nested.

> #### Headers in blockquotes
>
> * You can quote a list.
> * Etc.

Inline Code

1
2
3
4
5
`<code>` spans are delimited
by backticks.

You can include literal backticks
like `` `this` ``.

Block Code

Indent every line of a code block by at least 4 spaces or 1 tab.

1
2
3
4
This is a normal paragraph.

This is a preformatted
code block.

Horizontal Rules

Three or more dashes or asterisks:

1
2
3
4
5
---

* * *

- - - -

Hard Line Breaks

End a line with two or more spaces:

Roses are red, Violets are blue.