preface

As a programmer, I believe I am familiar with MarkDown syntax. I will use it more or less in my daily knowledge accumulation, blog writing or work report.

Markdown is a markup language that can be written using a plain text editor to format plain text content with simple markup syntax.

The specific introduction and use of grammar without too much introduction, relatively simple, a large number of online search. There are many corresponding editors, such as MacDown, note-taking software, or blog platforms that support MarkDown syntax. As far as I can see, most of the interface is edit + preview. Typora is different from other editing tools. When the corresponding markup is entered, the system will automatically render the text and form the corresponding format. Therefore, the same interface of editing and preview is achieved.

Take a look at the general effect, which will be explained later:

To obtain

Typora— A markdown editor, markdown reader.

Enter the official website for download. Currently, there are corresponding versions for Mac, Windows and Linux, and of course, there are detailed introduction to use.

The basic use

Typora supports the use of native markup syntax, but also supports the use of very powerful shortcut keys, the two use together, can greatly improve the work efficiency.

The title

Special style

The list of

code

form

Flow chart

Relevant corresponding code:

Flow st=>start: start op=>operation: Your operation cond=>condition: Yes or No? E =>end ST ->op->cond (yes)->e cond(no)->op // sequence Title: Connection request (SYN=1,seq= client_ISN) Server host -> Client host: Grant connection (SYN=1,seq= client_ISN) \ N ACK = client_ISN +1 Client host -> server host: Validation (SYN = 0, seq + 1) = client_isn \ + 1 / / nack = server_isn mermaid graph TD client1 - > |read / write|SVN((SVN server))
client2-->|read only|SVN
client3-->|read / write|SVN
client4-->|readonly|SVN client5(...) -->SVN SVN---|store the data|sharedriveCopy the code

Use the advanced

Insert the picture

Someone said to insert a picture by what count as advanced use, not a line of code! [](), but I’m going to say something different.

What should we do when we need to insert articles?

  1. Get the link address of the picture directly from the network as your own picture link (in case the link changes, the picture will not be displayed)
  2. The relative path of the direct local file (in case the blog needs to be shared, no one can see the image)
  3. First upload pictures through other platforms (qiniuyun), and then copy the link address (more difficult to operate)
  4. Of course, you can drag and drop files directly from Jane to the editor.

IPic can upload pictures by dragging and dropping, shortcut keys and other ways. It supports Weibo, Qiniu, Youpi, Ali Cloud, Imgur, Flickr, Amazon S3 and other picture bed, and automatically saves Markdown format links, giving you unprecedented illustration experience.

Take a look at the results:

Alternatively, you can copy and paste the image into the editor:

Can also support multiple file upload oh, specific tutorial please see ipIC tutorial

Version back

I think this is the best part of it! Git reset [commit] to get back to the version you want. What about Typora?

First click to browse all versions, i.e. you can see the historical version:

Subject to replace

Typora supports a variety of theme replacements

conclusion

Typora is used to, it is really inseparable from him, not only the interface is quite friendly, and the shortcut function is powerful, but also provides the way to insert pictures, have and learn it, can help you improve the efficiency of development.

The original address