个人感觉NexT主题Markdown分割线渲染结果不是很好看,想请教一下,如何修改Markdown渲染方式?
是hr的样式么?搜一下styl文件就知道了。
\source\css\_common\scaffolding\base.styl
在Line71处。
hr {
margin: 40px 0;
height: 3px;
border: none;
background-color: $gray-lighter;
background-image: repeating-linear-gradient(
-45deg,
white,
white 4px,
transparent 4px,
transparent 8px
);
}
部分样式可能在其他文件中有覆盖:
\source\css\_schemes\Mist\_base.styl
在Line9处。
hr {
margin: 20px 0;
height: 2px;
}
谢谢,通过修改这个文件\source\css\_common\scaffolding\base.sty,分割线改成我想要的样式了。
注释掉了这一段:
background-image: repeating-linear-gradient(
-45deg,
white,
white 4px,
transparent 4px,
transparent 8px
);
@jwwangchn dont understand u, write in English if not solved. If solved, close it please. Thank's!
Most helpful comment
是
hr的样式么?搜一下styl文件就知道了。\source\css\_common\scaffolding\base.styl在Line71处。
部分样式
可能在其他文件中有覆盖:\source\css\_schemes\Mist\_base.styl在Line9处。