如何将自定义 CSS 添加到 markdown 命令的结果中?

如何将自定义 CSS 添加到 markdown 命令的结果中?

降价新手...

我有一个非常简单的 markdown 文件,我正在使用 markdown 命令

markdown something.md -o something.html

我可以将自己的css注入到something.html文件中吗


我尝试在 markdown 中将 css 作为原始 html 插入,然后在处理 markdown 时使用 raw-html 标志,我可能做错了什么,因为markdown将 html 视为文本。

这是开始something.md

<html>
 <head>
  <style>
    <link res="stylesheet" type="text/css" href="mystyle.css">
  </style>
</head>
# Testing md
## testing md2
</html>

这是执行的结果markdown -o something.html -f +html something.md

<p><html>
<head></p>
<p></head></p>
<h1>Testing md</h1>
<h2>testing md2</h2>
</html></p>

相关内容