CVS html5/html-xhtml-author-guide

Update of /sources/public/html5/html-xhtml-author-guide
In directory roscoe:/tmp/cvs-serv5142

Modified Files:
	html-xhtml-authoring-guide.html 
Log Message:
Cleaned up the sample code and removed hyperlinks in the code, per bug 15006

--- /sources/public/html5/html-xhtml-author-guide/html-xhtml-authoring-guide.html	2013/04/08 04:05:02	1.91
+++ /sources/public/html5/html-xhtml-author-guide/html-xhtml-authoring-guide.html	2013/04/08 04:21:16	1.92
@@ -776,7 +776,7 @@
 		The example page could also be served as <code>'application/xhtml+xml'</code> instead, with the file extension .html, 
 		maintaining adherence to Polyglot markup and enabling the rendering of the SVG.
 	</p>
-	<pre class="example highlight">
+	<pre class="example">
 &lt;!DOCTYPE html&gt;
 
 
@@ -784,32 +784,32 @@
 
   &lt;head&gt;
     &lt;title&gt;A Sample Page Using Polglot Markup&lt;/title&gt;
-	&lt;!-- The link element is self-closing as described in <a href="#empty-elements">Section 6.4 Void Elements</a> --&gt;
+	&lt;!-- The link element is self-closing as described in Section 6.4 Void Elements --&gt;
 	&lt;!-- Style commands are included by linking to an external file rather than including them in-line, 
-	  as described in <a href="#script-and-style">Section 9. Script and Style</a> --&gt;
+	  as described in Section 9. Script and Style --&gt;
 	&lt;link type="text/css" rel="stylesheet" href="Sample.css"/&gt;
   &lt;/head&gt;
 
   &lt;body&gt;
     &lt;h1&gt;Sample Page Using Polyglot Markup&lt;/h1&gt;
     &lt;p&gt;
-      The source code for <a href="http://dev.w3.org/html5/html-xhtml-author-guide/SamplePage.html">this document</a> uses <a>polyglot markup</a>, 
+      The source code for this document uses <a>polyglot markup</a>, 
       a document that is a stream of bytes that parses into identical document trees 
       (with the exception of the xmlns attribute on the root element) when processed as HTML and when processed as XML.
-      The source code for <a href="http://dev.w3.org/html5/html-xhtml-author-guide/SamplePage.html">this document</a> also contains additional comments about the use of 
+      The source code for this document also contains additional comments about the use of 
       <a>polyglot markup</a>.
     &lt;/p&gt;
 		
     &lt;h2&gt;Foreign Elements&lt;/h2&gt;
     &lt;p&gt;
       The following shapes use SVG elements.
-      <a title="polyglot markup">Polyglot markup</a> introduces undeclared (native) default namespaces 
+      Polyglot markup introduces undeclared (native) default namespaces 
       for the the root SVG element (&lt;svg&gt;) and respects the mixed-case element names and values 
-      when appropriate, as described in sections <a href="#element-level-namespaces">5.1 Element-Level Namespaces</a>, 
-      <a href="#element-names">6.3.1 Element Names</a>, and <a href="#attribute-values">6.3.3 Attribute Values</a>.
+      when appropriate, as described in sections 5.1 Element-Level Namespaces, 
+      6.3.1 Element Names, and 6.3.3 Attribute Values.
     &lt;/p&gt;
 
-    &lt;!-- <a title="polyglot markup">Polyglot markup</a> declares the xlink: namespace on the &lt;svg&gt; element to maintain XML-compatibility  --&gt;
+    &lt;!-- Polyglot markup declares the xlink: namespace on the &lt;svg&gt; element to maintain XML-compatibility  --&gt;
     &lt;svg width="350" height="250" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"&gt;
       &lt;g&gt;
         &lt;title&gt;Three SVG shapes&lt;/title&gt;
@@ -844,26 +844,26 @@
     &lt;/svg&gt; 		
     &lt;h2&gt;Void Elements&lt;/h2&gt;
     &lt;!-- Given an empty instance of an element whose content model is not EMPTY (in this case, an empty paragraph) 
-    <a>polyglot markup</a> does not use the minimized form, as described in <a href="#empty-elements">Section 6.4 Void Elements</a> --&gt;
+    polyglot markup does not use the minimized form, as described in Section 6.4 Void Elements --&gt;
     &lt;p&gt;&lt;/p&gt;
     &lt;p&gt;
       There is an empty &lt;p&gt; element before this paragraph. 
-      <a title="polyglot markup">Polyglot markup</a> uses &lt;p&gt;&lt;/p&gt; and not &lt;p /&gt;.  
+      Polyglot markup uses &lt;p&gt;&lt;/p&gt; and not &lt;p /&gt;.  
     &lt;/p&gt;
     &lt;p&gt;
-      <a title="polyglot markup">Polyglot markup</a> treats certain elements as self-closing, 
+      Polyglot markup treats certain elements as self-closing, 
       void elements, such as the following &lt;img&gt; element.
     &lt;/p&gt;
     &lt;img height="48" width="72" alt="W3C" src="http://www.w3.org/Icons/w3c_home"/&gt;
     &lt;p&gt;
-      For more information, see <a href="#empty-elements">Section 6.4 Void Elements</a>.
+      For more information, see Section 6.4 Void Elements.
     &lt;/p&gt;
 
 
     &lt;h2&gt;Required Elements&lt;/h2&gt;
     &lt;p&gt;
       The following table uses the required &lt;tbody&gt; element, as described in 
-      <a href="#required-elements">Section 6.1 Required Elements</a>.
+      Section 6.1 Required Elements.
     &lt;/p&gt;
     &lt;table&gt;
       &lt;tbody&gt;
@@ -888,7 +888,7 @@
 
     &lt;p&gt;
       The following table uses the required &lt;colgroup&gt; element, as described in 
-      <a href="#required-elements">Section 6.1 Required Elements</a>.  
+      Section 6.1 Required Elements.  
     &lt;/p&gt;
     &lt;table&gt;
       &lt;colgroup&gt;
@@ -919,7 +919,7 @@
     &lt;p&gt;
       This paragraph uses the string "&amp;amp;" for ampersands ("&amp;") and uses the string "&amp;#xA0;" 
       for a nonbreaking space between the words "polyglot&#xA0;markup," as described in 
-      <a href="#named-entity-references">Section 8. Named Entity References</a>.
+      Section 8. Named Entity References.
     &lt;/p&gt;
   &lt;/body&gt;
 &lt;/html&gt; 

Received on Monday, 8 April 2013 04:21:24 UTC