如何在 ERB 中转义 ERB 标签
我有一个简单的 fixture.yml
文件:
label:
body: "<%= variable %>"
问题是 ERB 代码被解析为加载固定装置的一部分,而我实际上希望正文字面意思是“<%=variable%>” ” (未插值)。
如何逃脱 ERB 标签?
I have a simple fixture.yml
file:
label:
body: "<%= variable %>"
The issue is that the ERB code is parsed as part of loading the fixture, whereas I actually want the body to be literally "<%= variable %>" (un-interpolated).
How do I escape the ERB tag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将第二个
%
添加到开始标记:<%%
序列为 有效的 ERB,呈现为文字<%
。Add a second
%
to the opening tag:The
<%%
sequence is valid ERB, rendered as a literal<%
.