ahonn / hexo-theme-even

:rocket: A super concise theme for Hexo
https://ahonn.github.io/hexo-theme-even/
MIT License
1.36k stars 213 forks source link

是不是没有支持多级列表 #273

Closed clxsh closed 3 years ago

clxsh commented 3 years ago

我在typora中编辑的多级列表,没有办法正常渲染呢

onns commented 3 years ago

我之前也遇到过这个问题,不过你有截图吗?我看一下 https://onns.xyz/blog/2020/06/15/hexo-plugin-test/#markdown-%E6%B8%B2%E6%9F%93我这里倒是可以,不知道是不是你想要的效果。

clxsh commented 3 years ago

我之前也遇到过这个问题,不过你有截图吗?我看一下 https://onns.xyz/blog/2020/06/15/hexo-plugin-test/#markdown-%E6%B8%B2%E6%9F%93我这里倒是可以,不知道是不是你想要的效果

cut

就是这种情况,出现了奇怪的换行,没有识别成多级列表

onns commented 3 years ago

themes/even/source/css/_partial/_post/_content.scss 这个文件

ul {     padding-left: 0;     list-style: inside; 把这两行注释掉应该就可以解决,但是我不知道会不会有其它的bug出现,所以我就没push给作者,你试试。 大概在41行左右的位置

clxsh commented 3 years ago

themes/even/source/css/_partial/_post/_content.scss 这个文件 ul {     padding-left: 0;     list-style: inside; 把这两行注释掉应该就可以解决,但是我不知道会不会有其它的bug出现,所以我就没push给作者,你试试。 大概在41行左右的位置

解决啦,谢谢