VirtualBox

source: vbox/trunk/src/libs/dita-ot-1.8.5/xsl/normalize.xsl@ 99005

Last change on this file since 99005 was 98584, checked in by vboxsync, 2 years ago

Docs: bugref:10302. Setting svn properties of DITA-OT library.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.0 KB
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<!-- This file is part of the DITA Open Toolkit project hosted on
3 Sourceforge.net. See the accompanying license.txt file for
4 applicable licenses.-->
5<!-- (c) Copyright IBM Corp. 2004, 2005 All Rights Reserved. -->
6
7<xsl:stylesheet version="1.0"
8 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
9<!-- normalize.xsl
10 | This stylesheet is the standard "identity transform" from the
11 | XSLT Recommendation without indentation.
12 | Note: the output from the DITA identity transforms is dtd-neutral,
13 | therefore the original doctype cannot be copied through. If you
14 | use identity transforms from a script, you can add logic to the
15 | script to re-insert the desired doctype for use by editors, browers, etc..
16 +-->
17
18<xsl:output method="xml" indent="no" />
19
20<xsl:template match="*">
21 <xsl:copy>
22 <xsl:copy-of select="@*" />
23 <xsl:apply-templates />
24 </xsl:copy>
25</xsl:template>
26
27<xsl:template match="comment()|processing-instruction()">
28 <xsl:copy />
29</xsl:template>
30
31</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette