Skip to content

Latest commit

 

History

History
53 lines (30 loc) · 902 Bytes

File metadata and controls

53 lines (30 loc) · 902 Bytes

MarkDown笔记

单词或者短语粗体效果

在需要设置的位置前后使用**或者__

markdown

This is a **good**

渲染效果

this is a good

单词或者短语斜体效果

在需要设置的位置前后使用*或者_

markdown

This is a *good*

渲染效果

This is a good

同时使用粗体和斜体

在需要设置的位置前后使用***或者___

markdown

this is a ***good***

渲染效果

this is a good

添加标题

你可以选择为链接添加标题(即 title 属性)。当用户将鼠标悬停在链接上时,将显示一个提示。要添加标题,请将其放在 URL 后面。

My favorite search engine is Duck Duck Go.

参考资料

markdown指南