Pug/Jade 模板引擎:html 美化器?

发布于 2024-10-17 12:53:59 字数 79 浏览 6 评论 0原文

我在 Node.js 上使用 jade/pug 模板引擎和 ExpressJS。它输出一个单行的 html。根本没有缩进。我找不到任何美化选项。

I'm using jade/pug template engine with ExpressJS on Node.js. It outputs a html with single line. No indentation at all. I couldn't find any beautifier option.

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

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

发布评论

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

评论(3

離人涙 2024-10-24 12:53:59

在 app.js 中,将 pretty 选项传递给 Jade 编译器。

app.set('view options', { pretty: true });

In app.js, pass the pretty option to the Jade compiler.

app.set('view options', { pretty: true });
属性 2024-10-24 12:53:59

曾经有一个 {pretty: true} 选项,但它被删除了,因为它弄乱了空格。

参考文献:

https://github.com/visionmedia/jade/issues/#issue/91
https://github.com/visionmedia/jade/issues/lined/#issue /89

There used to be a {pretty: true} option but it was removed because it messed up with whitespaces.

Refs:

https://github.com/visionmedia/jade/issues/#issue/91
https://github.com/visionmedia/jade/issues/closed/#issue/89

无法回应 2024-10-24 12:53:59

如果您从控制台编译,那么您可以使用它:

jade views/ --out html --pretty layout.jade

它将在 html 文件夹中生成 beutyfied 代码。

If you are compileing from console, then you can use this :

jade views/ --out html --pretty layout.jade

it will generate beutyfied code in html folder.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文