user3139429
user3139429

Reputation: 23

How to escape "code" tag in an XML code block in DokuWiki

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?

Upvotes: 2

Views: 1269

Answers (1)

Andreas Gohr
Andreas Gohr

Reputation: 4935

Use the file tag instead:

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

Upvotes: 1

Related Questions