From 3c3eeb764da48e87fee2a7a361bd33f8b76cb39a Mon Sep 17 00:00:00 2001 From: Jon Scott Stevens Date: Sat, 9 Dec 2000 06:16:54 +0000 Subject: [PATCH] fixed cdata examples git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268335 13f79535-47bb-0310-9956-ffa450edef68 --- docs/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.html b/docs/index.html index d8915dafd..f35137526 100644 --- a/docs/index.html +++ b/docs/index.html @@ -4037,7 +4037,7 @@ them.

  
 <replace dir="${src}" value="wombat">
   <include name="**/*.html" />
-  <replacetoken><[CDATA[multi line
+  <replacetoken><![CDATA[multi line
 token]]></replacetoken>
 </replace>
 
@@ -4047,9 +4047,9 @@ HTML files in the directory ${src}.Where \n is the platform specific line separator.

  
 <replace file="${src}/index.html">
-  <replacetoken><[CDATA[two line
+  <replacetoken><![CDATA[two line
 token]]></replacetoken>
-  <replacevalue><[CDATA[two line
+  <replacevalue><![CDATA[two line
 token]]></replacevalue>
 </replace>