我正在使用Scalatra的内置Scalate支持,但我希望我的default.scaml布局呈现HTML5 Doctype。 Scalate文档说明When the format option is set to :html5, !!! is always <!DOCTYPE html>,但我找不到任何人如何设置格式选项。
TIA!
答案 0 :(得分:5)
答案 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
...
}