如何让 YAML 忽略同一文件中的原始 HTML
我正在尝试制作一个平面文件 PHP 博客,它使用 YAML 将条目转换为代码,但我不知道如何让 YAML 忽略 HTML 标签以及第二个“---”之后的所有内容:
---
title = "Entry title"
tags = "tag1 tag2 tag3"
someInportentVariable = "Some Inportent Content"
---
<p>This is some entry content.</p>
<p>Line2.</p>
<p>Line3.</p>
<p>And so on...</p>
我怎么能能做到吗?
这是我的意思的一个例子: https://github.com/claco/claco.github.com/blob/master/_posts/2002-10-05-marry-a-sysadmin.textile。
更新:对于想要联系我的人,请前往我的新 stackoverflow 帐户,RobinLilfelt。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想要做的是将 HTML 视为 引用的标量文字 。您可以通过以
--- |
开始 HTML 部分并缩进所有行来完成此操作。例如:
What you probably want to do is treat the HTML as a quoted scalar literal. You do this by starting the HTML section with
--- |
and indenting all of the lines.e.g.: