如何在Scalate for Scaml中指定HTML5 Doctype格式?

时间:2011-06-21 07:04:12

标签: scala scalate scalatra

我正在使用Scalatra的内置Scalate支持,但我希望我的default.scaml布局呈现HTML5 Doctype。 Scalate文档说明When the format option is set to :html5, !!! is always <!DOCTYPE html>,但我找不到任何人如何设置格式选项。

TIA!

2 个答案:

答案 0 :(得分:5)

尝试

!!! 5

有关详细信息,请参阅user guide

答案 1 :(得分:2)

另外,为了参考,如果要将默认的!!!声明更改为HTML5,您可以更改ScamlOptions.format var。 Seems there are other helpful options in there also.

import org.fusesource.scalate.scaml.ScamlOptions

class MyScalatraFilter extends ScalatraFilter with ScalateSupport {
    ScamlOptions.format = ScamlOptions.Format.html5
    ...
}