次の単純な Diazo ルール ファイルがあります。
<rules
xmlns="http://namespaces.plone.org/diazo"
xmlns:css="http://namespaces.plone.org/diazo/css"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<theme href="theme/theme.html" />
<replace css:theme-children="#content" css:content-children=".content" />
</rules>
とテーマ:
<html>
<body>
<div id="content">
Lorem ipsum ...
</div>
</body>
</html>
変換したいソースは次のとおりです。
<html>
<body>
<div class="content">
<a href="mailto:info@example.org">info</a>
</div>
</body>
</html>
私が得るものは
... <a href="mailto:info@example.org">info</a> ...
しかし、href 属性の HTML エンティティをそのまま維持したいと考えています。ディアゾでこれを行うにはどうすればよいですか?