- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 12 Mar 2010 23:56:34 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv10951
Modified Files:
acknowledgements.html semantics.html spec.html
Log Message:
Add example of marking up a FAQ. (whatwg r4844)
[updated by splitter]
Index: acknowledgements.html
===================================================================
RCS file: /sources/public/html5/spec/acknowledgements.html,v
retrieving revision 1.879
retrieving revision 1.880
diff -u -d -r1.879 -r1.880
--- acknowledgements.html 12 Mar 2010 01:06:50 -0000 1.879
+++ acknowledgements.html 12 Mar 2010 23:56:31 -0000 1.880
@@ -462,6 +462,7 @@
Edward Welbourne,
Edward Z. Yang,
Eira Monstad,
+ Eitan Adler,
Eliot Graff,
Elizabeth Castro,
Elliott Sprehn,
Index: semantics.html
===================================================================
RCS file: /sources/public/html5/spec/semantics.html,v
retrieving revision 1.879
retrieving revision 1.880
diff -u -d -r1.879 -r1.880
--- semantics.html 11 Mar 2010 23:36:37 -0000 1.879
+++ semantics.html 12 Mar 2010 23:56:31 -0000 1.880
@@ -4761,7 +4761,25 @@
(<code><a href="#the-dl-element">dl</a></code> element).</p><p class="note">The <code><a href="#the-dt-element">dt</a></code> element itself, when used in a
<code><a href="#the-dl-element">dl</a></code> element, does not indicate that its contents are a
term being defined, but this can be indicated using the
- <code><a href="text-level-semantics.html#the-dfn-element">dfn</a></code> element.</p><h4 id="the-dd-element"><span class="secno">4.5.11 </span>The <dfn><code>dd</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
+ <code><a href="text-level-semantics.html#the-dfn-element">dfn</a></code> element.</p><div class="example">
+
+ <p>This example shows a list of frequently asked questions (a FAQ)
+ marked up using the <code><a href="#the-dt-element">dt</a></code> element for questions and the
+ <code><a href="#the-dd-element">dd</a></code> element for answers.</p>
+
+ <pre><article>
+ <h1>FAQ</h1>
+ <dl>
+ <dt>What do we want?</dt>
+ <dd>Our data.</dd>
+ <dt>When do we want it?</dt>
+ <dd>Now.</dd>
+ <dt>Where is it?</dt>
+ <dd>We are not sure.</dd>
+ </dl>
+</article></pre>
+
+ </div><h4 id="the-dd-element"><span class="secno">4.5.11 </span>The <dfn><code>dd</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
<dd>None.</dd>
<dt>Contexts in which this element may be used:</dt>
<dd>After <code><a href="#the-dt-element">dt</a></code> or <code><a href="#the-dd-element">dd</a></code> elements inside <code><a href="#the-dl-element">dl</a></code> elements.</dd>
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.883
retrieving revision 1.884
diff -u -d -r1.883 -r1.884
--- spec.html 12 Mar 2010 01:06:50 -0000 1.883
+++ spec.html 12 Mar 2010 23:56:31 -0000 1.884
@@ -307,7 +307,7 @@
</dl><p>This specification is available in the following formats:
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>.
-This is revision 1.3879.
+This is revision 1.3880.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2010 <a href="http://www.w3.org/"><abbr title="World Wide
Received on Friday, 12 March 2010 23:56:35 UTC