有没有办法在显示markdown文件时在harp中设置css?
Is there a way to set css in harp when displaying markdown files?
没有css的Markdown看起来不是很吸引人,我想在harp中查看markdown文件时自定义视觉显示。有什么办法吗?
如果你的项目中有_layout.ejs
或.jade
文件,它可以包装你写的所有Markdown。
例如,在 _layout.ejs
你可能有:
<html>
<head>
<title>My Site</title>
<script src="/css/main.css" rel="stylesheet"></script>
</head>
<body>
<%- yield %>
</body>
</html>
现在,您拥有的任何 Markdown 文件都将在 <%- yield %>
所在的位置呈现,因此您可以在我在 link 标记中引用的 main.css
文件中设置它们的样式。
Here is the full documentation for layout files
我还在一篇关于 starting a blog with Harp 的文章中更深入地探讨了这一点。希望对您有所帮助!
没有css的Markdown看起来不是很吸引人,我想在harp中查看markdown文件时自定义视觉显示。有什么办法吗?
如果你的项目中有_layout.ejs
或.jade
文件,它可以包装你写的所有Markdown。
例如,在 _layout.ejs
你可能有:
<html>
<head>
<title>My Site</title>
<script src="/css/main.css" rel="stylesheet"></script>
</head>
<body>
<%- yield %>
</body>
</html>
现在,您拥有的任何 Markdown 文件都将在 <%- yield %>
所在的位置呈现,因此您可以在我在 link 标记中引用的 main.css
文件中设置它们的样式。
Here is the full documentation for layout files
我还在一篇关于 starting a blog with Harp 的文章中更深入地探讨了这一点。希望对您有所帮助!