markup-domain.xsl 608 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. This file is part of the DITA Open Toolkit project.
  4. Copyright 2014 Jarno Elovirta
  5. See the accompanying LICENSE file for applicable license.
  6. -->
  7. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  8. xmlns:fo="http://www.w3.org/1999/XSL/Format"
  9. version="2.0">
  10. <xsl:template match="*[contains(@class, ' markup-d/markupname ')]">
  11. <fo:inline xsl:use-attribute-sets="markupname">
  12. <xsl:call-template name="commonattributes"/>
  13. <xsl:apply-templates/>
  14. </fo:inline>
  15. </xsl:template>
  16. </xsl:stylesheet>