blob: 69ae2aa96058fa0fcb38cd675f401a1c08355c83 [file] [log] [blame]
Marc Kupietz28f48e12024-04-14 16:17:05 +02001<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2 xmlns:saxon="http://saxon.sf.net/"
3 exclude-result-prefixes="saxon">
4
5 <xsl:output method="xml" indent="yes" saxon:line-length="1000"
6 doctype-public="-//IDS//DTD IDS-I5 1.0//EN"
7 doctype-system="http://corpora.ids-mannheim.de/I5/DTD/i5.dtd"
8 />
9
10 <xsl:mode on-no-match="shallow-copy"/>
11
12 <xsl:template match="hi[parent::div]">
13 <p>
14 <xsl:apply-templates/>
15 </p>
16 </xsl:template>
17
18</xsl:stylesheet>