我试图在玉器中制作电子邮件模板,我想把它放在codepen中,以便其他人可以访问它。但是,每当我收到错误时:
CodePen removed the words below from your Jade because they could be used to do bad things. Please remove them and try again.
->greensborohomevalue
->com <br>
->style <br>
->color <br>
->white <br>
->text <br>
->decoration <br>
->15 <br>
->span <br>
->style <br>
->color <br>
每一段文字......等等。
我可以在此处找到我的CodePen,http://codepen.io/Cutcopy/pen/qdRmOR。
知道为什么要这样做吗?它在我的桌面上编译得很好。
答案 0 :(得分:0)
我在CodePen收到了类似的错误,因为我的Jade包含字符串&#39;节点&#39;。
CodePen removed the words below from your Jade because they could be used to do bad things. Please remove them and try again.
->node
我的标记包含一个名为&#39; ordered-chart-nodes&#39;的类的元素。更改字符串&#39;节点&#39;在其他方面(在我的情况下,&#39; ordered-chart-items&#39;)修复了错误。
有趣的是,如果在Codepen上使用HTML Jade或Haml预处理器,就会发生这样的错误。字符串&#39;节点&#39;允许存在常规的HTML标记。