]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Align the regex with the one used in 2.4.x which gives nicer results.
authorChristophe Jaillet <jailletc36@apache.org>
Tue, 10 Apr 2018 18:19:56 +0000 (18:19 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Tue, 10 Apr 2018 18:19:56 +0000 (18:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1828841 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/style/xsl/list_for_prettify.xsl

index 3e45a3cbeaa17d78d7a3fa609121a96427e5759e..f3e0a964b26f85a75fd600549bc9c934e9d10ca1 100644 (file)
 <xsl:text># in place of the correponding PR_TAG array.</xsl:text>&lf;
 &lf;
 
-<xsl:text>        [PR_TAG,     /^&lt;\/?\b(</xsl:text>
+<xsl:text>        [PR_TAG,     /^\b(</xsl:text>
 <xsl:for-each select="$directives[@type='section']">
     <!-- Sorting is useless here, but the output is nicer -->
     <xsl:sort select="name" />
     <xsl:call-template name="list_section" />
 </xsl:for-each>
-<xsl:text>).*?>/, null],</xsl:text>
+<xsl:text>)\b/, null],</xsl:text>
 
 </xsl:template>
 <!-- /modulefilelist -->