MarkDown performance test blog Park


Press 1 to jump to the right tail of the article 1


MarkDown performance test blog Park

Section, add a variety of content articles

First, the text format

1, unordered list

The following three symbols + - * can be.

+ 文本1
- 文本2
* 文本3
  • Text 1

  • Text 2

  • Text 3

2, an ordered list

1. 文本1
2. 文本2
3. 文本3 
  1. Text 1
  2. Text 2
  3. Text 3

Ordered list and unordered list can be nested.

1. 第一项
+ 文本1
+ 文本2
+ 文本3 
2. 第二项
+ 文本1
+ 文本2
+ 文本3
  1. Item One
  • Text 1
  • Text 2
  • Text 3
  1. second section
  • Text 1
  • Text 2
  • Text 3

There is also a not very common task list .

- [ ] 任务一 未做任务 
- [x] 任务二 已做任务
  • [] A task without making task
  • [X] Task two is to do the task

3, bold and italic, underline and strikethrough

The first is in italics, the second is bold. Third, italic and bold comprehensive work.

*介绍一下博客园的markdown的使用方法*

**介绍一下博客园的markdown的使用方法**

***介绍一下博客园的markdown的使用方法***

Tell us about the use of blog markdown Park

Tell us about the use of blog markdown Park

Tell us about the use of blog markdown Park

MarkDown native syntax, grammar underlined does not exist.
We can use html code to achieve the effect underlined.

<u>下划线</u>
~~删除这些~~

Underline
Remove these

4, indent

开始一行作为标准,来看空了多少。
&ensp;半角的空格
&emsp;全角的空格
  两全角空格
&emsp;&emsp;建议使用全角的空格。刚开始的时候,为了缩进,可能会按空格啊,Tab啊,会发现达不到满意的效果。现在可以看到,空两格的效果出来了。

Beginning of a line as a standard, look at how many empty.
 Half-size spaces
 spaces full angle of
  co-existence em space
  is recommended to use full-width spaces. At the beginning, in order to indent, you may press the space ah, Tab ah, you will find less than satisfactory results. Now we can see the effect of two spaces out.

5, font, size and color

MarkDown native syntax, do these effects.
In some cases, you can use html code to achieve the corresponding effect:

Light red text: light red text:

浅红色文字:<font color="#dd0000">浅红色文字:</font><br/>

Some MarkDown software, is set to be related through cascading style sheets (css) file.

Set the background color, text color, and font:

  --bg-color: #ececd8;
  --text-color: #0080ff;

html, body {
  background-color: var(--bg-color);
  font-family: Yahei Mono, Roboto, Open Sans, sans-serif;
}

6, table

| 1左对齐 | 2右对齐 | 3居中 |
| :- | -: | :-: |
| 单元格 | 单元格 | 单元格 |
| 单元格 | 单元格 | 单元格 |
| 单元格 | 单元格 | 单元格 |
1 Left 2 right-aligned 3 center
Cell Cell Cell
Cell Cell Cell
Cell Cell Cell

In Typora, direct shortcut keys the Ctrl + T , then the operations related to.

Second, the reference

1, reference links

Web links

The basic format: [显示文本](链接地址)

[博客园](https://www.cnblogs.com/)
[百度](https://www.baidu.com/)

Garden blog
Baidu

Local Links

MarkDown can point to directories and files on the local hard disk.

Select Open link will open the corresponding folder or file.

Try it out on the page. After local MarkDown file is opened, you can try.

This is to manage local folders and files, very convenient.

[指向x盘文件夹](file://x:)
[指向文件aaa.txt](file://x:/aaa.txt)

X disk folder pointing
to the file aaa.txt

2, a reference picture

The basic format: ![图片名称](图片链接地址)

The image file, then upload it to a site map bed, get a picture URL link, you can reference pictures.

Sometimes open a Web page, it will see the picture, it may be because of the browser, you can change a browser and try again.

![KEjNm4.jpg](https://s2.ax1x.com/2019/10/17/KEjNm4.jpg)

KEjNm4.jpg

Of course, you can also reference the local images, such as to write:

![图片名称](file://x:/md.jpg)

3, paragraph references

Paragraph references can be nested.

>相见时难别亦难,东风无力百花残。
春蚕到死丝方尽,蜡炬成灰泪始干。
>>晓镜但愁云鬓改,夜吟应觉月光寒。
蓬山此去无多路,青鸟殷勤为探看。

Difficult when you meet Bie Yinan, Dongfeng flowers residual weakness.
Till death do us part, wax torch ashes tears dry.

Xiao-Jing but worry about its shallow change, Yin should feel the moonlight cold night.
Pengshan this to no more road, as the Tankan Bluebird hospitality.

4, code references

No branch code references, with anti-quotes "` "package.
Backticks upper left corner of the keyboard Esc button below.
such as:

浅红色文字:<font color="#dd0000">浅红色文字:</font><br/>

Branch with three anti-quotes "` "package.
The first row behind the anti-quotation marks with the language you want to use, or not added.

Code references, played a code format to save the same effect.

Some may also have different colors so that the code, highlight effect.

Three anti-quotes, no nested functions. If I want the whole article contains MarkDown marks, preserved as a code, and then refer to the article, the expected effect can not be done.

Third, special characters

If I want the #, # do not want this number, the title role in the play tag with the article, supposed to?

Can \ # .

Similarly, other symbols can also be resolved:

\\   反斜线      
\`   反引号      
\*   星号        
\_   底线        
\{}  花括号      
\[]  方括号      
\()  括弧        
\#   井字号      
\+   加号        
\-   减号        
\.   英文句点    
\!   惊叹号      

\ Backslash
`backtick
* asterisk
_ The bottom line
{} curly brackets
[] square brackets
() parentheses
# pound sign
+ plus
- minus
. English period
exclamation point!

Fourth, the jump

Jump inside pages with html code to implement it, the most common is to add the anchor.
In Typora, there are very detailed directory tree structure, the jump has been very convenient.
Anywhere on the page, plus: [TOC]
then Enter, it will automatically generate the target tree structure, but also with links. Click on the jump can be realized.

V. Other

  • Dividing line

With three asterisks, the minus sign to create a dividing line, there is not anything else in the line.

***
---


Plus not.

++++++

  • Remark
    我是一个脚注 [^2] 
    中间是长文。。。。。。
    [^2]: 注释在这里。

I'm a footnote [^ 2]
in the middle is a long article. . . . . .
[^ 2]: Note here.

The third line is gone, because the tail went automatically to the article.
In the garden blog, the comments will automatically go to the article last.
Converted into a pdf file, so.

Many times, we need to return to the article head immediately. When mobile phones to read, we can only continue to pull up. Article is very long, when to pull waited a long time.
With functional annotation, you can solve this problem.
(Another solution is to join the tail in the article link. This requires post-editing, because the time to write articles, do not know the link address.)

在文章头部加上:
按右边的1跳转到文章尾部 [^1] 
中间一定要至少一个空行。。
[^1]: 按右边的回车符跳转到文章头部
  • Wrap

Two or more consecutive space + Enter.

If no space to enter, you may find that after exporting pdf file and no line breaks.

Section II, published an article on the blog Park

Very simple, in Typora, then write a good essay, copy all.

In the blog the garden, in the settings, set the default editing mode: MarkDown editor.

Posted on it.

MarkDown a lot of fun, is to force.

Enjoy!

19.12.21


  1. By carriage to the right of the article to jump to the head

Guess you like

Origin www.cnblogs.com/xin01/p/12075819.html