Markdown 和 Org mode 格式控制

Markdown

很多时候 hexo 根据 markdown 生成的一些样式并不让人满意,这时候可能需要一些微调,
以下是我在网卡搜索到的方法,在这时记录一下。

生成 Read more

<!-- more -->

放在任何想插入的地方就好了。

控制表格第一列的宽度

<style>table th:first-of-type { width: 100px; }</style>

这个好像放在文件任何位置都可以,所有的表格都会被影响。

Org mode

以下是 Org mode 的控制方法

1
2
#+HTML: <style>table th:first-of-type { width: 100px; }</style>
#+HTML: <!-- more -->
0%