/plugins/BufferTabs/tags/BufferTabs-1.2.2/users-guide.xsl

# · Extensible Stylesheet Language Transformations · 45 lines · 42 code · 3 blank · 0 comment · 0 complexity · c08ddbca61756939742892ba34d961f7 MD5 · raw file

  1. <?xml version='1.0' ?>
  2. <!--
  3. You should use this XSL stylesheet to create plugin documentation.
  4. If you want all output in a single HTML file, specify the path to
  5. your DocBook-XSL "html/docbook.xsl" file in the <xsl:import>
  6. statement below. If you want each chapter to have its own file,
  7. specify the path to your "html/xtchunk.xsl".
  8. -->
  9. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns="http://www.w3.org/TR/xhtml1/transitional" exclude-result-prefixes="#default">
  10. <xsl:import href="docbook-wrapper.xsl" />
  11. <!-- Swing HTML control doesn't support &ldquo; and &rdquo;
  12. -->
  13. <xsl:template match="quote">
  14. "
  15. <xsl:apply-templates />
  16. "
  17. </xsl:template>
  18. <xsl:template match="guibutton">
  19. <xsl:call-template name="inline.boldseq" />
  20. </xsl:template>
  21. <xsl:template match="guiicon">
  22. <xsl:call-template name="inline.boldseq" />
  23. </xsl:template>
  24. <xsl:template match="guilabel">
  25. <xsl:call-template name="inline.boldseq" />
  26. </xsl:template>
  27. <xsl:template match="guimenu">
  28. <xsl:call-template name="inline.boldseq" />
  29. </xsl:template>
  30. <xsl:template match="guimenuitem">
  31. <xsl:call-template name="inline.boldseq" />
  32. </xsl:template>
  33. <xsl:template match="guisubmenu">
  34. <xsl:call-template name="inline.boldseq" />
  35. </xsl:template>
  36. <xsl:variable name="toc.list.type">ul</xsl:variable>
  37. <xsl:variable name="shade.verbatim">1</xsl:variable>
  38. <xsl:variable name="funcsynopsis.style">ansi</xsl:variable>
  39. <xsl:template match="void">
  40. <xsl:apply-templates />
  41. </xsl:template>
  42. </xsl:stylesheet>