markup-d.xsl 541 B

12345678910111213141516
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!-- This file is part of the DITA Open Toolkit project.
  3. See the accompanying license.txt file for applicable licenses.-->
  4. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  5. version="2.0">
  6. <xsl:template match="*[contains(@class, ' markup-d/markupname ')]">
  7. <code>
  8. <xsl:call-template name="commonattributes"/>
  9. <xsl:text>&lt;</xsl:text>
  10. <xsl:apply-templates/>
  11. <xsl:text>&gt;</xsl:text>
  12. </code>
  13. </xsl:template>
  14. </xsl:stylesheet>