ruby – 在Slim模板中,单独行上的HTML注释呈现在同一行上

前端之家收集整理的这篇文章主要介绍了ruby – 在Slim模板中,单独行上的HTML注释呈现在同一行上前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在SLIM中编写 HTML注释时:
/! The first line of comments
/! The second line of comments

输出变成了

<!-- The first line of comments --><!-- The second line of comments -->

所有其他生成的HTML都经过适当的格式化和缩进,因为我设置的等于true

我正在为其他人编写模板,所以我需要带有换行符的注释以便于阅读.

解决方法

您可以在Slim中实现单个多行注释,如下所示:
/!
  The first line of comments
  The second line of comments

哪个应该输出这个:

<!-- The first line of comments
The second line of comments -->
原文链接:https://www.f2er.com/ruby/267386.html

猜你在找的Ruby相关文章