jinghu-moon / typora-see-yue-theme

See Yue 系列主题是一个自定义样式极多、简约、充满细节的 Typora 主题。(The See Yue series theme is a Typora theme with a plethora of custom styles, minimalism, and full of details.)
https://theme.typora.io/theme/see-yue/
207 stars 20 forks source link

关于 icon 图标 #63

Closed lspzc closed 8 months ago

lspzc commented 8 months ago

在导出 html 时 icon 会丢失,有没有办法像图片一样放在本地 html 同级文件夹中那样解决,我搞不定 icon 图标的路径,导出 html 时有关引用的 icon 图标都会变成小方块,真的很丑~~

jinghu-moon commented 8 months ago

在导出的 HTML 文件添加如下代码:

<!doctype html>
<html>

<head>
  <!-- ... -->
  <!-- 添加的代码 -->
  <link rel="stylesheet" href="https://at.alicdn.com/t/c/font_3250797_i6uies4t84i.css">
  <!-- ... -->
</head>

<body>

</body>

</html>

保存,再次打开 HTML 文件,就能显示图标。

导出 HTML 会丢失一些样式(字体、图标),我觉得导出 PDF 更好点。

lspzc commented 8 months ago

好的,谢谢大佬