Markdown markup language base

Reference: https: //www.runoob.com/markdown

1. The application file suffix

Suffix: .md or .markdown
** application: ** Markdown can be used to compose e-book
** editing tools: ** Typora editor

2. Use title

Primary and secondary headers, may use one or two # # Before heading, for example, this may be a title #; This is the second header ##
may also be used in the * next line of text plus plurality === as a title = *, text plus the next line ------- plurality of horizontal line, as a secondary header
using a corresponding number of more levels title number #

3. Font Style

Text ends and underscore _ * role as both sides have the same number of asterisks or underscores, a both sides while one (or _) denotes an intermediate text italic
two, while two sides * (or _) represent intermediate text bold ; three sides while 3 * (or _) denotes an intermediate text bold italics ;

4. List

Add text before ** (* or + or -) ** expressed as an unordered list , text by a dot mark; front and add text ** ** represents an ordered list of numbers.

5. Block

Text by increasing the symbol > , e.g., write
> first layer
>> The second layer

corresponds shown below,
Here Insert Picture Description

6. Code

Short codes: a code can use single quotes for example,
'the printf ()' function corresponds to displayed,
Here Insert Picture Description
the code segments: a pair of three may be used Backticks (usually near the keyboard keys esc), and the first three anti the quotation marks written on the language code, for example,
`` `python
which is python content
?????
correspond are shown below in FIG.

这是python内容

7. Links

Add text links form: [Baidu link] (http://baidu.com), shown below
Baidu link
Direct link form: <http: baidu.com> shown below
http: baidu.com

8. image link

! [alt rookie tutorial] (http://static.runoob.com/images/runoob-logo.png), shown below
Rookie Tutorial
want to find pictures of the linked pages, by clicking the right mouse button in the browser page, click Inspect Element, click Image position can be found

form

Split in the form of a pipe between each table below,
| table of contents | table of contents | table of contents |
| --------------- | ----------- ---- | --------------- |
| the following content | following content | following content |

shown below,

Table of contents Table of contents Table of contents
The following content The following content The following content

Note that each line has several vertical lines, there are so many other vertical line and the second line can be controlled by the other side shows ----: indicates that the column to the right;: ----: It indicates that the column to the left;: ----: indicates that the column is centered;

Published 70 original articles · won praise 1 · views 2415

Guess you like

Origin blog.csdn.net/weixin_43794311/article/details/105073011