引入
图片
1 2 3
| ![图片](/pics/xxxx.png)
sudo ln -s /home/cs/oss/hexo/themes/spfk/source/pics /pics
|
并列
1 2 3 4
| <center class="half"> <img src="http://xxx.jpg" width="100"/> <img src="http://yyy.jpg" width="100"/> </center>
|
跳转
站内文章跳转
A文章跳到B文章的某处
1 2 3 4 5 6
| [A文章](/路径#id-service) <a href="/tool/apm/exporter/#xx-exporter" target="_blank">exporter.yaml</a> html语法新开窗口
B文章<p id="id-service" hidden/>
|
eg: 跳转到
页面内跳转
A文章
1 2 3
| <a id="zim-modules">跳到这里</a>
[点击这里](#zim-modules)
|
typora 按住ctrl再点击
折叠
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <details> <summary>折叠文本</summary> 此处可书写文本 嗯,是可以书写文本的 </details>
<details> <summary>折叠代码块</summary> <pre><code> System.out.println("虽然可以折叠代码块"); System.out.println("但是代码无法高亮"); </code></pre> </details>
<details> <summary>折叠代码块</summary> <pre><xmp> System.out.println("不渲染"); <input /> </xmp></pre> </details>
|
示例
折叠文本
此处可书写文本
嗯,是可以书写文本的
折叠代码块
System.out.println("虽然可以折叠代码块");
System.out.println("但是代码无法高亮");