Markdown light and concise editor-Typora minimalist tutorial

Download: https://typora.io/

Introduction:

Typora is a lightweight and concise Markdown editor that supports instant rendering technology, which is also the most significant difference from other Markdown editors. Instant rendering allows you to write Markdown as freely as writing Word documents, unlike other editors that have an edit bar and a display bar.

  • Typora deleted the preview window and other unnecessary interference, and replaced it with real-time preview.

  • The syntax of Markdown varies with different parsers or editors. Typora uses GitHub Flavored Markdown .

Markdown introduction:

Markdown is a lightweight markup language that allows people to write documents in a plain text format that is easy to read and write.

The Markdown language was created in 2004 by John Gruber (English: John Gruber).

Documents written in Markdown can export documents in HTML, Word, images, PDF, Epub and other formats.

Markdown document prepared by the suffix .md, .markdown.

Commonly used shortcut keys:

  • Bold: Ctrl + B

  • Title: Ctrl + H

  • Insert link: Ctrl + K

  • Insert picture: Ctrl + Shift + I

  • Bolt: Ctrl + Z

  • First level heading: Ctrl + 1 --and so on

Typora快捷键整合:

Ctrl+1  一级标题    Ctrl+B  字体加粗
Ctrl+2  二级标题    Ctrl+I  字体倾斜
Ctrl+3  三级标题    Ctrl+U  下划线
Ctrl+4  四级标题    Ctrl+Home   返回Typora顶部
Ctrl+5  五级标题    Ctrl+End    返回Typora底部
Ctrl+6  六级标题    Ctrl+T  创建表格
Ctrl+L  选中某句话   Ctrl+K  创建超链接
Ctrl+D  选中某个单词  Ctrl+F  搜索
Ctrl+E  选中相同格式的文字   Ctrl+H  搜索并替换
Alt+Shift+5 删除线    Ctrl+Shift+I    插入图片
Ctrl+Shift+M  公式块  Ctrl+Shift+Q    引用
注:一些实体符号需要在实体符号之前加”\”才能够显示

Insert table:

Enter | Header 1 | Header 2 | and press Enter. You can create a list containing 2 lists. Shortcut key Ctrl + T pops up a dialog box eg:

Head 1 Head 2
  • Either way, the first row is the header, the second row separates the header and the main part, and the third row starts with one table row for each row

  • Use a pipe symbol | to separate columns from column to column

  • You can also set the alignment (between the header and the content). If you do not use the alignment mark, the content is aligned to the left by default and the header is centered

    1. Align left: |

    2. Right aligned|:

    3. Center alignment: |:

  • For the sake of beauty, you can use spaces to align cells in different rows, and use | on both sides to mark

  • To make Markdown clearer, there must be at least one space on both sides of | and-(the leftmost and rightmost | are not needed)

split line:

Enter *** or — and press Enter to draw a horizontal line, as follows:


Subscript:

Can be used to <sub>文本</sub>achieve subscript: H 2 O

Can be used to <sup>文本</sup>achieve superscript: X 2

Center text:

Use <center>剧中内容</center>can be centered:

HTML:

Support HTML, tags that are not covered by Markdown can be directly written in HTML in the document.

Highlight:

==高亮内容== (This function needs to be turned on in the settings)

image:

![显示的文字](D:\Photo\smile\cat1.jpg "图片标题")
![显示的文字](D:\Photo\smile\cat1.jpg)

In addition to the above two methods, you can also directly drag pictures in to automatically generate links.

footnote:

[^这是一个脚注]

Footnote demonstration This is a footnote

Move the mouse to 这是一个脚注the hyperlink to see the text content of the footnote.

Mathematical formula:

When you need to insert a mathematical formula in the editor, you can use two dollar signs $$ to wrap the mathematical formula in TeX or LaTeX format. Load Mathjax as needed to render mathematical formulas.

Press $$and then press the Enter key to edit the mathematical formula.

Internal link:

This is a property with a title [链接](http://example.com/ "标题")that is not a title attribute[链接](http://example.net/)

link

link

Hyperlinks:

  1. Inline link:
[百度][https://www.baidu.com/]

[Baidu][https://www.baidu.com/]

  1. Reference link:
[CSDN网址][https://www.csdn.net/]

[CSDN URL][https://www.csdn.net/]
3. Automatic link:

<https://github.com/>

https://github.com/

Special characters:

&copy;      版权      
&reg;       注册商标
&trade;     商标
&nbsp;      空格
&amp;       和号
&quot;      引号
&apos;      撇号
&lt;        小于号
&gt;        大于号
&ne;        不等号
&le;        小于等于
&ge;        大于等于
&cent;      分
&pound;     磅
&euro;      欧元
&yen;       元
&sect;      节
&times;     乘号
&divide;    除号
&plusmn;    正负号

to sum up:

As a niche note-taking software, Typora allows readers to deeply feel the author's intentions and creativity, and provides free Mac, Windows, and Linux versions, which is quite conscientious!

  1. It is recommended to open the outline view Ctrl + Shift + 1

  2. The top grid is required to insert the table, otherwise it cannot be displayed

  3. No need to memorize the grammar, right click to query

Reference link 1: https://www.cnblogs.com/hider/p/11614688.html

Reference link 2: https://www.jianshu.com/p/a6a6a22e9393

Guess you like

Origin blog.csdn.net/qq_40220309/article/details/104578240