eeechoo / blogs

个人博客
0 stars 0 forks source link

MarkDown语法 #5

Open eeechoo opened 5 years ago

eeechoo commented 5 years ago

https://guides.github.com/features/mastering-markdown/#GitHub-flavored-markdown https://www.cnblogs.com/ayning/p/4393848.html

eeechoo commented 5 years ago

https://commonmark.org/ 这个网站有交互式学习 markdown
同时这个网站 可以把 markdown 转换为 HTML 方便理解

eeechoo commented 5 years ago

nested list align problem (列表嵌套对齐问题)

你会发现 对齐的真谛在于 写的时候对齐,那么显示的时候就会对齐。

举例说明如下,代码如下

1. test1  
   align this line(这里使用 三个空格, 方便与 `test1` 对齐)
   ```python  
   align code block

align this line

align this quote

  1. test2
    • Fruit
      • Apple(这里使用 两个空格, 方便与 Fruit 对齐)
      • Orange
      • Banana
    • Dairy
      • Milk
      • Cheese
      • 老干妈风味 Cheese
      • 荷兰风味 Cheese

效果如下(感觉应该使用HTML放在代码右边,更加具有对比性)

  1. test1
    align this line(这里使用 三个空格, 方便与 test1 对齐)

    align code block

    align this line

    align this quote

  2. test2

    • Fruit
      • Apple(这里使用 两个空格, 方便与 Fruit 对齐)
      • Orange
      • Banana
    • Dairy
      • Milk
      • Cheese
      • 老干妈风味 Cheese
      • 荷兰风味 Cheese