How to escape “code” tag in an XML code block in DokuWiki

爷,独闯天下 提交于 2019-12-12 20:18:19

问题


In a DokuWiki page, I want to show part of an XML file as a highlighted syntax block using the <code xml> tag. The XML also contains a <code></code> tag, so DokuWiki detects it as the end of the block. For example:

<code xml>
  <?xml version="1.0" encoding="UTF-8"?>
  <root>
    <code>Some data</code><!-- The sintax highlighted block breaks here -->
  </root>
</code><!-- This one is actually the closing tag -->

Is there a way to escape the </code> tag?


回答1:


Use the file tag instead:

<file xml>
  <?xml version="1.0" encoding="UTF-8"?>
  <root>
    <code>Some data</code>
  </root>
</file>


来源:https://stackoverflow.com/questions/20800993/how-to-escape-code-tag-in-an-xml-code-block-in-dokuwiki

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!