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

发布于 2024-11-16 21:38:03 字数 290 浏览 3 评论 0原文

我正在使用 Scalatra 的内置 Scalate 支持,但我希望我的 default.scaml 布局能够呈现 HTML5 Doctype。 Scalate 文档指出当格式选项设置为 :html5 时, !!!始终是 但我找不到任何人确切说明如何设置格式选项。

蒂亚!

I'm using Scalatra's built-in Scalate support but I want my default.scaml layout to render an HTML5 Doctype. The Scalate documentation states When the format option is set to :html5, !!! is always <!DOCTYPE html> but I can't find anyone saying exactly how to set the format option.

TIA!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

任性一次 2024-11-23 21:38:03

请尝试

!!! 5

参阅用户指南了解更多详细信息。

Try

!!! 5

See the user guide for more detail.

Hello爱情风 2024-11-23 21:38:03

另外供参考,如果您想将默认的 !!! 声明更改为 HTML5,您可以更改 ScamlOptions.format var。 似乎还有其他有用的那里还有选项。

import org.fusesource.scalate.scaml.ScamlOptions

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

Also for reference, it looks like if you want to change the default !!! declaration to HTML5, you can change the 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
    ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文