xml-domain-attr.xsl 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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:attribute-set name="xmlelement">
  11. <xsl:attribute name="font-family">monospace</xsl:attribute>
  12. </xsl:attribute-set>
  13. <xsl:attribute-set name="xmlatt">
  14. <xsl:attribute name="font-family">monospace</xsl:attribute>
  15. </xsl:attribute-set>
  16. <xsl:attribute-set name="textentity">
  17. <xsl:attribute name="font-family">monospace</xsl:attribute>
  18. </xsl:attribute-set>
  19. <xsl:attribute-set name="parameterentity">
  20. <xsl:attribute name="font-family">monospace</xsl:attribute>
  21. </xsl:attribute-set>
  22. <xsl:attribute-set name="numcharref">
  23. <xsl:attribute name="font-family">monospace</xsl:attribute>
  24. </xsl:attribute-set>
  25. <xsl:attribute-set name="xmlnsname">
  26. <xsl:attribute name="font-family">monospace</xsl:attribute>
  27. </xsl:attribute-set>
  28. <xsl:attribute-set name="xmlpi">
  29. <xsl:attribute name="font-family">monospace</xsl:attribute>
  30. </xsl:attribute-set>
  31. </xsl:stylesheet>