map-conref_template.xsl 693 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. This file is part of the DITA Open Toolkit project.
  4. Copyright 2017 Jarno Elovirta
  5. See the accompanying LICENSE file for applicable license.
  6. -->
  7. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
  8. <xsl:import href="conrefImpl.xsl"/>
  9. <dita:extension id="dita.xsl.conref" behavior="org.dita.dost.platform.ImportXSLAction" xmlns:dita="http://dita-ot.sourceforge.net"/>
  10. <xsl:output method="xml" encoding="utf-8" indent="no" />
  11. <xsl:template match="*[@conref and contains(@class, ' topic/')]">
  12. <xsl:copy>
  13. <xsl:apply-templates select="@* | node()"/>
  14. </xsl:copy>
  15. </xsl:template>
  16. </xsl:stylesheet>