Markdown Image和超链接的使用

447 阅读1分钟

Markdown img和a的使用

img markdown语法

不支持缩放

 ![avatar](https://www.baidu.com/img/flexible/logo/pc/result.png)

avatar

img html语法

支持缩放

 <img src="https://www.baidu.com/img/flexible/logo/pc/result.png" alt="avatar" style="zoom:35%;" />
avatar

超链接1

 [必应](http://bing.com)

必应

超链接2

 <a href="https://bing.com">必应</a>

 必应

以上内容均在Typora中完成