如何在 icefaces1.8 中为 html5 插入文档类型

how to insert doctype for html5 in icefaces1.8

我有一个遗留的 icefaces1.8 应用程序。其他 .xhtml 文件使用了 template.xhtml。 template.xhtml 文件包含

<ice:outputDeclaration 
doctypeRoot="HTML" 
doctypePublic="-//W3C//DTD HTML 4.01 Transitional//EN" 
doctypeSystem="http://www.w3.org/TR/html4/loose.dtd" />

我想要 <!DOCTYPE html>,但发现很难做到。目前无法升级到更新版本的 icefaces。

好的,我找到了解决方案

<ice:outputDeclaration 
doctypeRoot="HTML" 
doctypePublic="" 
doctypeSystem="" />

生成<!doctype html>