如何使用我的 html 模板解析 markdown 以将一些代码块从 *.md 截断或移动到 html?
我有这样的降价文件:carrot_soup.md
Very nice carrot soup
============
I'd like soup like this:
### Ingredients ###
* carrots
* celery
* lentils
### Coocking ###
Boil some water. And eat it with all Ingredients
我需要将其解析为如下内容:
<div class="head"">
<h1>Very nice carrot soup</h1>
<p>I'd like soup like this:</p>
</div>
<!-- Something else -->
<div class="Ingredients">
<ul>
<li>carrots</li>
<li>celery</li>
<li>lentils</li>
</ul>
</div>
<div class="Coocking">
<p>Boil some water. And eat it with all Ingredients</p>
</div>
我需要将一些降价数据从一个降价文件移动到我的 html 模板中的不同部分
我有:
1) html 模板 2) 静态构建引擎 3) 带有降价代码的文件
在我的 html 模板中,我有一些<div>
部分,我需要将 markdown 数据与 html 模板结合起来,而不是按原样。我需要削减一些降价代码并将此代码放入不同的 html<div>
部分。怎么做?