如何在FigDice中打印doctype

时间:2014-11-23 13:09:41

标签: php template-engine

我没有设法输出

 <!doctype html>
使用FigDice模板引擎在渲染视图中使用

指令。 如果我将指令放在我的XML模板之上,它似乎被忽略了。 感谢

1 个答案:

答案 0 :(得分:0)

这是因为

<!doctype html>

指令由FigDice引擎本身的XML阅读器处理(尽管它没有做任何事情)。

您要做的是:先前开始使用FigDice模板,然后在CDATA节点内输出此序列。

<fig:template xmlns:fig="http://www.figdice.org/">
<![CDATA[<!doctype html>]]>
    <html>
      ....
    </html>
</fig:template>

根据项目的例子,这是推荐的方式:

examples/example1-getstarted/template-main.xml