MOxFIVE / hexo-theme-yelee

简而不减 Hexo 双栏博客主题; Another simple and elegant theme for Hexo.
http://moxfive.xyz/
1.38k stars 328 forks source link

请问怎么不让目录自动生成目录数字号 #43

Closed maquannene closed 8 years ago

maquannene commented 8 years ago

自动生成目录时,会自动在目录前追加数字编号,我怎么去屏蔽掉这个东西。 因为我本身的 md 就已经写了目录编号,怎么去屏蔽掉这个东西。

谢谢

MOxFIVE commented 8 years ago

参考下面修改即可 https://github.com/MOxFIVE/hexo-theme-yelee/blob/master/layout/_partial/toc.ejs#L3

- <%- toc(post.content) %>
+ <%- toc(post.content, {list_number: false}) %>
maquannene commented 8 years ago

thank a lot

On Feb 25, 2016, at 8:32 PM, MOxFIVE notifications@github.com wrote:

参考下面修改即可 https://github.com/MOxFIVE/hexo-theme-yelee/blob/master/layout/_partial/toc.ejs#L3 https://github.com/MOxFIVE/hexo-theme-yelee/blob/master/layout/_partial/toc.ejs#L3