Getting started with Markdown language

Markdown editor pays attention to keyboard operation, saves time-consuming mouse operation, enjoys the code word process and high-quality typesetting.
This blog briefly records the basic use of Markdown

Ready to work

VS code has a wealth of plug-ins that can support Markdown editing and previewing.
In fact, there are many software that focus on Markdown text editing.

  • Typora
  • Joplin
  • Cmd Markdown

If you choose VS code, you may need to install the following plugins:

  • Markdown Toc generated table of contents
  • Markdown All in One implements basic syntax
  • Markdown Preview Enhanced to achieve preview effect
    Click the icon in the VS code software to enter the corresponding plug-in and download

Basic operation

  1. Wrap
    the end of the line and press Enter two spaces

  2. Bold, slanted

    **加粗**=> Bold
    Shortcut Ctrl+B

    *倾斜*=> Tilt
    shortcut key Ctrl+I

  3. Title format
    ### 三级标题
    #### 四级标题
    supports up to six levels of title

  4. Insert picture

![](website_location_of_the_picture)

Insert website picture: 5. Insert formula Support Latax E = mc 2 E=mc^2
[![UaC6ns.th.jpg](https://imgconvert.csdnimg.cn/aHR0cHM6Ly9zMS5heDF4LmNvbS8yMDIwLzA3LzE0L1VhQzZucy50aC5qcGc?x-oss-process=image/format,png)](https://imgchr.com/i/UaC6ns)
UaC6ns.th.jpg


$$ E=mc^2 $$
E=mc2
6. Text quotation
Example:>引用一段文字
>quote a text

references

[1] Cmd Markdown grammar manual
[2] Markdown file automatic generation directory
[3] Markdown + VSCODE to achieve the most perfect and smooth writing experience
[4] Directory generation problem repair
[5] Image centered display and image size change
[6] Detailed hugo tutorial

Other tidbits

  • HUGO inserted pictures and tossed several times, and later found that some web servers could not be uploaded
  • If I knew LATAX, I wouldn’t have to spend money to buy AXMATH editing formula qwq in 2018
  • Luo Xiaohei appeared in the last episode of the Dali Temple log hahaha

Guess you like

Origin blog.csdn.net/GreatSimulation/article/details/107396796