我正在使用 Node.js 和 Piler ( https://github.com/epeli/piler )。项目网站上的示例展示了如何将 Piler 与 index.jade 文件一起使用。
index.jade:
!!! 5
html
head
!{css}
!{js}
body
h1 Hello Piler
当索引文件被交付给客户端时, !{css}
and!{js}
标签将转换为相应的 html 标签。
例如 :<script type="text/javascript" src="myscript.js"></script>
如何在没有 index.jade 文件但使用 index.html 文件的情况下使用 Piler?index.html中的!{css}
and!{js}
标签应该是什么样子?
换句话说:我不想将 Piler 与 Jade 一起使用,而是与标准 html 一起使用。
提前致谢。