markup-domain.xsl 585 B

123456789101112131415
  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. xmlns:fo="http://www.w3.org/1999/XSL/Format"
  6. version="2.0">
  7. <xsl:template match="*[contains(@class, ' markup-d/markupname ')]">
  8. <fo:inline xsl:use-attribute-sets="markupname">
  9. <xsl:call-template name="commonattributes"/>
  10. <xsl:apply-templates/>
  11. </fo:inline>
  12. </xsl:template>
  13. </xsl:stylesheet>