PUG在noscript标签中添加iframe周围的引号

问题描述 投票:0回答:1

我正在尝试将标签添加到PUG模板的底部,但它会不断在iframe周围添加引号。

我尝试了以下内容

PUG

noscript
    iframe(src='https://www.googletagmanager.com/ns.html?id=GTM-TZT5D57', height='0', width='0', style='display:none;visibility:hidden')

结果

<noscript>
"<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TZT5D57" height="0" width="0" style="display:none;visibility:hidden"></iframe>"
</noscript>

PUG

| <noscript>
| <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TZT5D57" height="0" width="0" style="display:none;visibility:hidden"></iframe>
| </noscript>

结果

<noscript>
    "
    <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TZT5D57" height="0" width="0" style="display:none;visibility:hidden">
    "
</iframe>

如何在没有引号的情况下添加iframe?

使用webpack与以下版本

“pug”:“^ 2.0.3”,

“pug-extract-loader”:“^ 1.0.8”,

“pug-html-loader”:“^ 1.1.5”,

pug
1个回答
0
投票

确保在测试时 - 您正在禁用浏览器上的Javascript。

"<iframe ... >"是为了防止浏览器实际运行它(它只是将其呈现为将被隐藏的文本)

如果您在浏览器上停用JavaScript,iframe代码将正确呈现

© www.soinside.com 2019 - 2024. All rights reserved.