xml twig:输出未转义的文本
我正在使用 Perl 的 XML::Twig 模块将 XML 转换为 (X)HTML。我需要输出一个如下所示的 Javascript 元素:
<script type="text/javascript">window.onload = function(){for(i = 1; i < 5; i++)collapse("tbl" + i);}</script>
由于脚本包含未经 XML 批准的“<”,当我调用 $node->set_text($code);
时,它被转义为“<”,这会破坏它。如何在不转义的情况下输出文本?如果这是不可能的或不好的,我该如何解决它?
I'm using Perl's XML::Twig module to transform XML into (X)HTML. I need to output a Javascript element that looks like this:
<script type="text/javascript">window.onload = function(){for(i = 1; i < 5; i++)collapse("tbl" + i);}</script>
Since the script contains "<", which is not XML-approved, when I call $node->set_text($code);
, it is escaped as "<", which breaks it. How do I output text without escaping it? If that's impossible or bad, how do I get around it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望 XHTML 格式良好,您仍然必须转义“<”。这当然是 Javascript 不喜欢的。
因此,解决方案是将脚本放在 CDATA 部分中,您可以通过为元素指定标签
'#CDATA
' 在 XML::Twig 中获得该部分。以下是创建 CDATA 部分的方法
:想要将CDATA中的所有脚本包装起来,方法如下:
这只会包装本地脚本,并且不会对已经包装的脚本进行双重包装。
If you want the XHTML to be well-formed you still have to escape the '<'. Which of course Javascript would not like.
So the solution is to put the script in a CDATA section, which you get in XML::Twig by giving the element the tag
'#CDATA
'Here is how you would create a CDATA section:
If you want to wrap all the scripts in CDATA, here is how to do it:
This will only wrap local scripts, and will not double-wrap the ones which are already wrapped.