VirtualBox

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

最後變更 在這個檔案從99507是 98584,由 vboxsync 提交於 2 年 前

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

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 1.0 KB
 
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>
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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