dita2rtf-utilities.xsl 723 B

123456789101112131415161718192021
  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. <!-- (c) Copyright IBM Corp. 2006 All Rights Reserved. -->
  5. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  6. version="2.0" >
  7. <!-- Deprecated: Write output directly instead -->
  8. <xsl:template name="get-ascii">
  9. <xsl:param name="txt"/>
  10. <xsl:value-of select="$txt"/>
  11. </xsl:template>
  12. <xsl:template name="getStringRTF">
  13. <xsl:param name="stringName"/>
  14. <xsl:call-template name="getVariable">
  15. <xsl:with-param name="id" select="$stringName"/>
  16. </xsl:call-template>
  17. </xsl:template>
  18. </xsl:stylesheet>