Typora实现导出文档图片自动编号
Typora 版本
1.4.8
1.5.12
图片自动编号实现
可以参照:
Typora使用技巧:自动编号、常用快捷键等_lc_1203的博客-CSDN博客
依托任意主题css文件,这里贴上本教程使用的:
/* 图片自动编号 */
#write {
counter-increment: imgNum 0;
}
/* 这里写法有多种 */
#write p:has(img)::after {
counter-increment: imgNum;
content: "图" counter(imgNum) attr(alt) !important;
text-align: center;
width: 100%;
display: inline-block;
margin-top: 8px !important;
font-size: small;
}
参考链接:
- https://developer.mozilla.org/zh-CN/docs/Web/CSS/:has
- https://editor.csdn.net/md/?articleId=130441441