A short tour of markdown

俗话说工欲善其事,必先利其器,今天开始用Markdown写一些笔记,首先应当把markdown熟悉一下,掌握大概框架,以后会更加顺畅。 [TOC] 大标题用一个#号

特殊符号

  • 标题:#
  • 黑体:**

  • 斜体:*

  • 分点:“- ”

  • 背景色:`

  • 引用:"> "

快捷键

  • 加粗:command + B

  • 斜体:command + I

  • 有序列表:command + option + O

  • 无序列表:command + option + U

  • 引用:command + option + Q

表格

typora使用表格只需按格式键入表格第一行,如下:

|项目|价格|数量| 然后键入回车就生成下面的表格,而且在typora中可以很方便调整表格

项目 价格 数量
苹果 12000 3
香蕉 2 6

代码块 使用`

\ + 所用语言

#include <iostream>

int main()
{
    std::cout << "Hello world!" << std::endl;
}

更多内容 以后用到再补充

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.