Ruby的ERB格式在哪里“正式”定义?

时间:2014-01-03 18:18:49

标签: ruby-on-rails ruby erb specifications

许多来源(例如What is the meaning of erb?和来自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的回答中引用的日本传统,请允许我澄清一下我对文档的最官方“英文”版本感兴趣。

1 个答案:

答案 0 :(得分:6)

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.

让他们以同样的方式工作。

Here是作者对此的解释,herehere是作者撰写的文档。