- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 30 Jul 2009 17:08:51 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup
In directory hutz:/tmp/cvs-serv14618
Modified Files:
spec.html syntax.html
Log Message:
streamline the description of what an end tag is
Index: syntax.html
===================================================================
RCS file: /sources/public/html5/markup/syntax.html,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- syntax.html 30 Jul 2009 16:42:47 -0000 1.18
+++ syntax.html 30 Jul 2009 17:08:49 -0000 1.19
@@ -243,13 +243,13 @@
<li>A
"<code title="U+003C LESS-THAN SIGN"><</code>"
character.</li>
- <li>A
+ <li>The element’s
<a href="syntax.html#tag-name" title="syntax-tag-name">tag name</a>.</li>
<li>Optionally, one or more
<a href="syntax.html#attribute">attributes</a>,
each of which must be preceded by one or more
<a href="terminology.html#space">space characters</a>.</li>
- <li>Zero or more
+ <li>Optionally, one or more
<a href="terminology.html#space">space characters</a>.</li>
<li>Optionally, a
"<code title="U+002F SOLIDUS">/</code>"
@@ -262,20 +262,20 @@
</li>
<li>
<dfn id="syntax-end-tags">End tags</dfn>
- must have the following format:
+ consist of the following parts, in exactly the following
+ order:
<ol>
- <li>The first character of an end tag must be a
+ <li>A
"<code title="U+003C LESS-THAN SIGN"><</code>"
character.</li>
- <li>The second character of an end tag must be a
+ <li>A
"<code title="U+002F SOLIDUS">/</code>"
character</li>
- <li>The next few characters of an end tag must be the
- element’s
+ <li>The element’s
<a href="syntax.html#tag-name" title="syntax-tag-name">tag name</a>.</li>
- <li>After the tag name, there may be one or more
+ <li>Optionally, one or more
<a href="terminology.html#space" title="space character">space characters</a>.</li>
- <li>An end tag must be closed by a
+ <li>A
"<code title="U+003E GREATER-THAN SIGN">></code>"
character.</li>
</ol>
Index: spec.html
===================================================================
RCS file: /sources/public/html5/markup/spec.html,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -d -r1.74 -r1.75
--- spec.html 30 Jul 2009 16:42:47 -0000 1.74
+++ spec.html 30 Jul 2009 17:08:49 -0000 1.75
@@ -1185,13 +1185,13 @@
<li>A
"<code title="U+003C LESS-THAN SIGN"><</code>"
character.</li>
- <li>A
+ <li>The element’s
<a href="#tag-name" title="syntax-tag-name">tag name</a>.</li>
<li>Optionally, one or more
<a href="#attribute">attributes</a>,
each of which must be preceded by one or more
<a href="#space">space characters</a>.</li>
- <li>Zero or more
+ <li>Optionally, one or more
<a href="#space">space characters</a>.</li>
<li>Optionally, a
"<code title="U+002F SOLIDUS">/</code>"
@@ -1204,20 +1204,20 @@
</li>
<li>
<dfn id="syntax-end-tags">End tags</dfn>
- must have the following format:
+ consist of the following parts, in exactly the following
+ order:
<ol>
-<li>The first character of an end tag must be a
+<li>A
"<code title="U+003C LESS-THAN SIGN"><</code>"
character.</li>
- <li>The second character of an end tag must be a
+ <li>A
"<code title="U+002F SOLIDUS">/</code>"
character</li>
- <li>The next few characters of an end tag must be the
- element’s
+ <li>The element’s
<a href="#tag-name" title="syntax-tag-name">tag name</a>.</li>
- <li>After the tag name, there may be one or more
+ <li>Optionally, one or more
<a href="#space" title="space character">space characters</a>.</li>
- <li>An end tag must be closed by a
+ <li>A
"<code title="U+003E GREATER-THAN SIGN">></code>"
character.</li>
</ol>
Received on Thursday, 30 July 2009 17:09:00 UTC