highlight.xsl 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version='1.0'?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. xmlns:fo="http://www.w3.org/1999/XSL/Format"
  4. xmlns:xslthl="http://xslthl.sf.net"
  5. exclude-result-prefixes="xslthl"
  6. version='1.0'>
  7. <!-- ********************************************************************
  8. $Id: highlight.xsl 8419 2009-04-29 20:37:52Z kosek $
  9. ********************************************************************
  10. This file is part of the XSL DocBook Stylesheet distribution.
  11. See ../README or http://docbook.sf.net/release/xsl/current/ for
  12. and other information.
  13. ******************************************************************** -->
  14. <xsl:import href="../highlighting/common.xsl"/>
  15. <xsl:template match='xslthl:keyword' mode="xslthl">
  16. <fo:inline font-weight="bold"><xsl:apply-templates mode="xslthl"/></fo:inline>
  17. </xsl:template>
  18. <xsl:template match='xslthl:string' mode="xslthl">
  19. <fo:inline font-weight="bold" font-style="italic"><xsl:apply-templates mode="xslthl"/></fo:inline>
  20. </xsl:template>
  21. <xsl:template match='xslthl:comment' mode="xslthl">
  22. <fo:inline font-style="italic"><xsl:apply-templates mode="xslthl"/></fo:inline>
  23. </xsl:template>
  24. <xsl:template match='xslthl:tag' mode="xslthl">
  25. <fo:inline font-weight="bold"><xsl:apply-templates mode="xslthl"/></fo:inline>
  26. </xsl:template>
  27. <xsl:template match='xslthl:attribute' mode="xslthl">
  28. <fo:inline font-weight="bold"><xsl:apply-templates mode="xslthl"/></fo:inline>
  29. </xsl:template>
  30. <xsl:template match='xslthl:value' mode="xslthl">
  31. <fo:inline font-weight="bold"><xsl:apply-templates mode="xslthl"/></fo:inline>
  32. </xsl:template>
  33. <!--
  34. <xsl:template match='xslthl:html'>
  35. <span style='background:#AFF'><font color='blue'><xsl:apply-templates/></font></span>
  36. </xsl:template>
  37. <xsl:template match='xslthl:xslt'>
  38. <span style='background:#AAA'><font color='blue'><xsl:apply-templates/></font></span>
  39. </xsl:template>
  40. <xsl:template match='xslthl:section'>
  41. <span style='background:yellow'><xsl:apply-templates/></span>
  42. </xsl:template>
  43. -->
  44. <xsl:template match='xslthl:number' mode="xslthl">
  45. <xsl:apply-templates mode="xslthl"/>
  46. </xsl:template>
  47. <xsl:template match='xslthl:annotation' mode="xslthl">
  48. <fo:inline color="gray"><xsl:apply-templates mode="xslthl"/></fo:inline>
  49. </xsl:template>
  50. <xsl:template match='xslthl:directive' mode="xslthl">
  51. <xsl:apply-templates mode="xslthl"/>
  52. </xsl:template>
  53. <!-- Not sure which element will be in final XSLTHL 2.0 -->
  54. <xsl:template match='xslthl:doccomment|xslthl:doctype' mode="xslthl">
  55. <fo:inline font-weight="bold"><xsl:apply-templates mode="xslthl"/></fo:inline>
  56. </xsl:template>
  57. </xsl:stylesheet>