许多来源(例如
this google search和
this google search的前四项结果中的三个)引用了
http://ruby-doc.org/stdlib-1.8.7/libdoc/erb/rdoc/ERB.html作为ERB格式的官方文档,但这只是给你API而不是文件格式.
我在http://docs.puppetlabs.com/guides/templating.html#erb-template-syntax发现了一个不错的小结,但是还有更多的官方,对吧?谁是“定义权威”?这是从Rails出来的吗?
由于有些人喜欢知道问题的动机,我正在寻找关于ERB标签不能跨越多行的相当基本限制的文档,这反过来来自于最近看到多个SO问题,OP的显然不知道这个约束.
更新:鉴于@ sawa答案中引用的日本遗产,请允许我澄清,我对文档的最正式的“英文”版本感兴趣.
解决方法
erb由Masatoshi Seki开发,作为eRuby的Ruby实现,因此其规范几乎遵循eRuby的规范.作者
mentions的一个区别是:
% cat hello.erb Hello,<% print "World" %>. % eruby hello.erb Hello,World. % erb hello.erb WorldHello,.
在这种情况下你可以做:
% cat hello2.erb Hello,<%= "World" %>. % eruby hello2.erb Hello,World. % erb hello2.erb Hello,World.
让他们以同样的方式工作.