svn commit: r1896707 - /db/torque/trunk/torque-site/src/site/xslt/body-content.xsl
| Newsgroups | gmane.comp.jakarta.turbine.torque.devel |
|---|---|
| Message-ID | <[email protected]> |
Author: gk
Date: Wed Jan 5 12:37:32 2022
New Revision: 1896707
URL: http://svn.apache.org/viewvc?rev=1896707&view=rev
Log:
- set xsl output to html to get anchor elements not void but with preserved closing tag.
Modified:
db/torque/trunk/torque-site/src/site/xslt/body-content.xsl
Modified: db/torque/trunk/torque-site/src/site/xslt/body-content.xsl
URL: http://svn.apache.org/viewvc/db/torque/trunk/torque-site/src/site/xslt/body-content.xsl?rev=1896707&r1=1896706&r2=1896707&view=diff
==============================================================================
--- db/torque/trunk/torque-site/src/site/xslt/body-content.xsl (original)
+++ db/torque/trunk/torque-site/src/site/xslt/body-content.xsl Wed Jan 5 12:37:32 2022
@@ -21,11 +21,10 @@
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
-
- <xsl:output method="xml" encoding="UTF-8" omit-xml-declaration="yes" />
+ <xsl:output method="html" encoding="UTF-8" omit-xml-declaration="yes" />
- <xsl:template match="*[not(node())] |
- @*[not(normalize-space())]"/>
+ <!--xsl:template match="*[not(node())] |
+ @*[not(normalize-space())]"/-->
<xsl:template match="@*|node()">
<xsl:apply-templates/>