csswg/css3-lists Overview.src.html,1.35,1.36

Update of /sources/public/csswg/css3-lists
In directory hutz:/tmp/cvs-serv30402

Modified Files:
	Overview.src.html 
Log Message:
Removed last of the CDATA sections, reverting them back to just escaping < to &lt;


Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-lists/Overview.src.html,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- Overview.src.html	22 Mar 2011 17:24:17 -0000	1.35
+++ Overview.src.html	22 Mar 2011 17:46:34 -0000	1.36
@@ -104,25 +104,25 @@
 		<p>For instance, the following example illustrates how markers may be used to add parentheses around
 		each numbered list item. This HTML application and style sheet:</p>
 
-		<pre><![CDATA[
-<!doctype html>
-<html>
- <head>
-  <title>Creating a list with markers</title>
-  <style>
+		<pre>
+&lt;!doctype html>
+&lt;html>
+ &lt;head>
+  &lt;title>Creating a list with markers&lt;/title>
+  &lt;style>
    li::marker { content: "(" counter(list-item, lower-roman) ")"; }
    li { display: list-item; }
-  </style>
- </head>
- <body>
-  <ol>
-   <li>This is the first item.</li>
-   <li>This is the second item.</li>
-   <li>This is the third item.</li>
-  </ol>
- </body>
-</html>
-]]></pre>
+  &lt;/style>
+ &lt;/head>
+ &lt;body>
+  &lt;ol>
+   &lt;li>This is the first item.&lt;/li>
+   &lt;li>This is the second item.&lt;/li>
+   &lt;li>This is the third item.&lt;/li>
+  &lt;/ol>
+ &lt;/body>
+&lt;/html>
+		</pre>
 
 		<p>should produce something like this: </p>
 
@@ -1099,11 +1099,11 @@
 		<pre>
 li { display: list-item; list-style-type: decimal /* initial value */; }
 li::marker { content: normal /* initial value */; }
-</pre>
+		</pre>
 		<p>And the following document fragment:</p>
-		<pre><![CDATA[
-<li>List Item</li>
-]]></pre>
+		<pre>
+&lt;li>List Item&lt;/li>
+		</pre>
 		<p>The computed value of the 'content' property on the ''::marker'' 
 		pseudo-element of the list item element is:</p>
 		<pre>counter(list-item, decimal) "."</pre>

Received on Tuesday, 22 March 2011 17:46:37 UTC