遍历 jekyll markdown 中的行

Iterate through lines in jekyll markdon

我通过降价循环从 Jekyll 中的 CSV 数据文件中获取了一段。

现在我想将这些行显示为单独的标题。 有办法吗

data = "this is the first line
this is the second line"

通过代码将上述数据变量置于 markdown 下

#### {{data}}

结果是第一行被带到 h4 下而第二行被遗漏了

<h4>this is the first line <br /></h4>
<p>this is the second line</p>

虽然我需要以下内容

<h4>this is the first line <br></h4>
<h4>this is the second line</h4>

问题 有没有一种解决方法可以将单独的拆分行带入 distinct h4 标签.?

这是你想要的吗?

<h4>{{ data | newlines_to_br }}</h4>

它会导致:

<h4>this is the first line<br>this is the second line</h4>