使用 ruby 在 yaml 中输出折叠文本块
当我执行 message.to_yaml 时,我得到以下输出,
mainText: "<h3 class=\"right_column\">Mark</h3> ... "
但我希望输出采用以下格式:
mainText: |
<h3 class="right_column">Mark</h3>
...
如何强制 ruby 使用管道来折叠多行字符串。
我尝试过
message.to_yaml(:UseFold => true, :UseBlock => true)
,但不起作用,
谢谢
when I do message.to_yaml I am getting the following output
mainText: "<h3 class=\"right_column\">Mark</h3> ... "
but I want the output in the following format
mainText: |
<h3 class="right_column">Mark</h3>
...
How do you force ruby to use pipe to fold multiple lines of string.
I tried
message.to_yaml(:UseFold => true, :UseBlock => true)
but it is not working
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)