MakeDown常用命令总结

MakeDown常用命令总结

一、 Styling text
样式 语法 举例 输出
Bold ** ** or __ __ ** This is a bold text ** this is a bold text
ltalic * * or _ _ * this is a ltalic text * this is a ltalic text
Strikethrough ~~ ~~ ~~ thid is wrong ~~ this is wrong~
All bold and ltatic *** *** *** this is a bold and ltatic text *** this is a bold and ltatic text

二、 Lists

举例1

- Gerorge
- John
- Thomas

输出1

  • Gerorge
  • John
  • Thomas

举例2

1. Gerorge
2. John
3. Thomas

输出2

  1. Gerorge
  2. John
  3. Thomas

三、Nested Lists

举例1

1. First list item
   - First nested list item
     - second nested list item

输出1

  1. First list item
    • First nested list item
      • second nested list item
四、 Task lists

举例1

-[x] finish 
-[] working1
-[] working2

输出2

  • finish
  • working1
  • working2

你可能感兴趣的:(MakeDown常用命令总结)