- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 05 Aug 2008 12:20:01 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv31516
Modified Files:
Overview.html
Log Message:
Linkify 'void elements' more. (whatwg r2013)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.1200
retrieving revision 1.1201
diff -u -d -r1.1200 -r1.1201
--- Overview.html 5 Aug 2008 12:10:15 -0000 1.1200
+++ Overview.html 5 Aug 2008 12:19:58 -0000 1.1201
@@ -44420,10 +44420,11 @@
tag</a> to indicate where they end. The start and end tags of certain
normal elements can be <a href="#omitted"
title=syntax-tag-omission>omitted</a>, as described later. Those that
- cannot be omitted must not be omitted. Void elements only have a start
- tag; end tags must not be specified for void elements. Foreign elements
- must either have a start tag and an end tag, or a start tag that is marked
- as self-closing, in which case they must not have an end tag.
+ cannot be omitted must not be omitted. <a href="#void-elements">Void
+ elements</a> only have a start tag; end tags must not be specified for
+ void elements. Foreign elements must either have a start tag and an end
+ tag, or a start tag that is marked as self-closing, in which case they
+ must not have an end tag.
<p>The contents of the element must be placed between just after the start
tag (which <a href="#omitted" title=syntax-tag-omission>might be implied,
@@ -44436,8 +44437,9 @@
content models, however, the five types of elements have additional
<em>syntactic</em> requirements.
- <p>Void elements can't have any contents (since there's no end tag, no
- content can be put between the start tag and the end tag).
+ <p><a href="#void-elements">Void elements</a> can't have any contents
+ (since there's no end tag, no content can be put between the start tag and
+ the end tag).
<p>CDATA elements can have <a href="#text2" title=syntax-text>text</a>,
though it has <a href="#cdata-rcdata-restrictions">restrictions</a>
@@ -44510,10 +44512,11 @@
required to be followed by a space. See the <a href="#attributes2"
title=syntax-attributes>attributes section</a> below.)
- <li>Then, if the element is one of the void elements, or if the element is
- a foreign element, then there may be a single U+002F SOLIDUS
- (<code>/</code>) character. This character has no effect on void
- elements, but on foreign elements it marks the start tag as self-closing.
+ <li>Then, if the element is one of the <a href="#void-elements">void
+ elements</a>, or if the element is a foreign element, then there may be a
+ single U+002F SOLIDUS (<code>/</code>) character. This character has no
+ effect on void elements, but on foreign elements it marks the start tag
+ as self-closing.
<li>Finally, start tags must be closed by a U+003E GREATER-THAN SIGN
(<code>></code>) character.
Received on Tuesday, 5 August 2008 12:20:37 UTC