1<?xml version="1.0"?> 2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 3 4 <!-- FileName: entref03 --> 5 <!-- Document: http://www.w3.org/TR/xslt --> 6 <!-- DocVersion: 19991116 --> 7 <!-- Section: 3.4 --> 8 <!-- Creator: Paul Dick --> 9 <!-- Purpose: This is a general test of whitespace handling. 10 It verifies the handling of the special whitespace 11 characters (space, tab, CR, LF) In different situations. 12 1. within xsl:text where they should not be stripped, 13 2. within LREs <end2> where they may be stripped. --> 14 15<xsl:template match="/"> 16 <out> 17 <xsl:text> a. <!-- This --> 18 ,</xsl:text> 19 <xsl:text> </xsl:text>, <!-- Contains space --> 20 <xsl:text>	 </xsl:text>, <!-- Contains tab and 1 tab --> 21 <xsl:text> </xsl:text>, <!-- Contains CR and 2 tabs --> 22 <xsl:text> </xsl:text> <!-- Contains NL and 3 tabs --> 23 24 25 26 27 28 29 30 <end> This will not be stripped. </end>, 31 <end2>  	 </end2> 32 </out> 33</xsl:template> 34 35 36 <!-- 37 * Licensed to the Apache Software Foundation (ASF) under one 38 * or more contributor license agreements. See the NOTICE file 39 * distributed with this work for additional information 40 * regarding copyright ownership. The ASF licenses this file 41 * to you under the Apache License, Version 2.0 (the "License"); 42 * you may not use this file except in compliance with the License. 43 * You may obtain a copy of the License at 44 * 45 * http://www.apache.org/licenses/LICENSE-2.0 46 * 47 * Unless required by applicable law or agreed to in writing, software 48 * distributed under the License is distributed on an "AS IS" BASIS, 49 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 50 * See the License for the specific language governing permissions and 51 * limitations under the License. 52 --> 53 54</xsl:stylesheet> 55