topic_axf.xsl 729 B

123456789101112131415161718192021
  1. <?xml version='1.0'?>
  2. <!--
  3. This file is part of the DITA Open Toolkit project.
  4. Copyright 2018 IBM
  5. See the accompanying LICENSE file for applicable license.
  6. -->
  7. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  8. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  9. xmlns:fo="http://www.w3.org/1999/XSL/Format"
  10. xmlns:axf="http://www.antennahouse.com/names/XSL/Extensions"
  11. xmlns:dita-ot="http://dita-ot.sourceforge.net/ns/201007/dita-ot"
  12. exclude-result-prefixes="dita-ot xs"
  13. version="2.0">
  14. <xsl:template match="*|@alt" mode="graphicAlternateText">
  15. <xsl:attribute name="axf:alttext"><xsl:apply-templates select="." mode="text-only"/></xsl:attribute>
  16. </xsl:template>
  17. </xsl:stylesheet>