<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.whatwg.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rikkertkoppes</id>
	<title>WHATWG Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.whatwg.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rikkertkoppes"/>
	<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/wiki/Special:Contributions/Rikkertkoppes"/>
	<updated>2026-04-29T20:17:47Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Authoring&amp;diff=3561</id>
		<title>Authoring</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Authoring&amp;diff=3561"/>
		<updated>2009-03-06T17:55:28Z</updated>

		<summary type="html">&lt;p&gt;Rikkertkoppes: /* Authoring examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please add tips here on using HTML-5-specific features, and making them compatible with older browsers.&lt;br /&gt;
&lt;br /&gt;
== Getting Internet Explorer to recognize the new elements ==&lt;br /&gt;
&lt;br /&gt;
Internet Explorer will not style elements it doesn&#039;t recognize. You can get around this with a script. For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
document.createElement(&amp;quot;section&amp;quot;)&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
([http://blog.whatwg.org/supporting-new-elements-in-ie More details].)&lt;br /&gt;
&lt;br /&gt;
== Authoring examples ==&lt;br /&gt;
&lt;br /&gt;
[work in progress - Rikkert Koppes]&lt;br /&gt;
&lt;br /&gt;
This section is intended to give examples of frequently used markup. For a start, the examples given in the specification should be present and elaborated, next, it can be amended with real workd examples. Goal is to concoct a non normative example document for authors accompanying the specification.&lt;br /&gt;
&lt;br /&gt;
* Authoring scientific documents&lt;br /&gt;
* Authoring article based pages (news, blogs)&lt;br /&gt;
&lt;br /&gt;
=== Authoring scientific documents ===&lt;br /&gt;
&lt;br /&gt;
Since the origins of HTML lie in the markup of scientific documents [REF NEEDED], let us start with markup examples for such a document. This will allow us to discuss HTML examples in a layered way, starting relatively simple.&lt;br /&gt;
&lt;br /&gt;
Consider the first page of the document &amp;quot;The Semantic Web Revisited&amp;quot; by Nigel Shadbolt, Wendy Hall and Tim Berners-Lee [http://geospatialsemanticweb.com/wp-content/uploads/2006/07/01637364.pdf], for clarity [http://www.rikkertkoppes.com/whatwg/examples/semantic_web_revisited_page_01.PNG pictured here]. We skip the orangish editor info at the top and start with the document header.&lt;br /&gt;
&lt;br /&gt;
The document contains one article, hence the [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-article-element article] element is a suitable choice here, starting with a [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-header-element header] element.&lt;br /&gt;
&lt;br /&gt;
Notice the nested [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-address-element address] element representing the document authors. The address element represents the contact information for the sectioning content it applies to, which is, in this case, the article element.&lt;br /&gt;
&lt;br /&gt;
The following elements &amp;lt;em title=&amp;quot;16:22, 6 March 2009 (UTC)&amp;quot;&amp;gt;currently&amp;lt;/em&amp;gt; fall in the sectioning content category:&lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-section-element section]&lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-nav-element nav]&lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-article-element article]&lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-aside-element aside]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;article&amp;gt;&lt;br /&gt;
  &amp;lt;header&amp;gt;&lt;br /&gt;
    &amp;lt;h1&amp;gt;The Semantic Web Revisited&amp;lt;/h1&amp;gt;&lt;br /&gt;
    &amp;lt;address&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Nigel Shadbolt and Wendy Hall, University of Southampton&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Tim Berners-Lee, Massachusetts Institute of Technology&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/address&amp;gt;&lt;br /&gt;
  &amp;lt;/header&amp;gt;&lt;br /&gt;
  &amp;lt;!-- rest of the document --&amp;gt;&lt;br /&gt;
&amp;lt;/article&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next, the article contains a series of sections, hence the [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-section-element section] element. Note the capital &amp;quot;I&amp;quot; is not explicitely marked.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;article&amp;gt;&lt;br /&gt;
  &amp;lt;!-- header --&amp;gt;&lt;br /&gt;
  &amp;lt;section&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;In the 50 years [...] instantaneously.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;Fifty years ago [...] research.&amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;/section&amp;gt;&lt;br /&gt;
  &amp;lt;!-- rest of the document --&amp;gt;&lt;br /&gt;
&amp;lt;/article&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;article&amp;gt;&lt;br /&gt;
  &amp;lt;!-- first part of the document --&amp;gt;&lt;br /&gt;
  &amp;lt;section&amp;gt;&lt;br /&gt;
    &amp;lt;h2&amp;gt;From documents to data and information&amp;lt;/h2&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;The original [...] unrealized.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;A Web of data [...] Web.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;The article included [...] Web.&amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;/section&amp;gt;&lt;br /&gt;
  &amp;lt;!-- rest of the document --&amp;gt;&lt;br /&gt;
&amp;lt;/article&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[about sectioning content and headers counting]&lt;br /&gt;
&lt;br /&gt;
Figures are not only images, but also for example code listings [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-figure-element], in general, anything which can be moved away from the main flow of the document without affecting the document&#039;s meaning. One [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-legend-element legend] element in the figure (if present as first or last child) represents the figure caption.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;figure&amp;gt;&lt;br /&gt;
  &amp;lt;img src=&amp;quot;ericmiller_rdf.png&amp;quot; alt=&amp;quot;A graphic representation of &lt;br /&gt;
    the RDF/XML document as given in the next figure.&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;legend&amp;gt;An RDF graph representing Eric Miller.&amp;lt;/legend&amp;gt;&lt;br /&gt;
&amp;lt;/figure&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;figure&amp;gt;&lt;br /&gt;
  &amp;amp;lt;pre&amp;amp;gt;&amp;lt;code class=&amp;quot;language-rdf/xml&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;!-- the actual rdf snippet representinf Eric Miller --&amp;gt;&lt;br /&gt;
  &amp;lt;/code&amp;gt;&amp;amp;lt;/pre&amp;amp;gt;&lt;br /&gt;
  &amp;lt;legend&amp;gt;A chunk of RDF in RDF/XML describing Eric Miller and &lt;br /&gt;
    corresponding to the graph in Figure A.&amp;lt;/legend&amp;gt;&lt;br /&gt;
&amp;lt;/figure&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that the phrase &amp;quot;Figure A&amp;quot; is not part of the legend. This is typically handled through CSS [REF NEEDED].&lt;br /&gt;
&lt;br /&gt;
In the documents, some quotes from the text are extracted as an eye-catcher. These quotes, marked with a [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-q-element q] element, are additionally marked with an [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-aside-element aside] element.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;aside&amp;gt;&lt;br /&gt;
  &amp;lt;q&amp;gt;URIs have global scope [...] of it.&amp;lt;/q&amp;gt;&lt;br /&gt;
&amp;lt;/aside&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rikkertkoppes</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Authoring&amp;diff=3560</id>
		<title>Authoring</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Authoring&amp;diff=3560"/>
		<updated>2009-03-06T17:54:06Z</updated>

		<summary type="html">&lt;p&gt;Rikkertkoppes: /* Authoring examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please add tips here on using HTML-5-specific features, and making them compatible with older browsers.&lt;br /&gt;
&lt;br /&gt;
== Getting Internet Explorer to recognize the new elements ==&lt;br /&gt;
&lt;br /&gt;
Internet Explorer will not style elements it doesn&#039;t recognize. You can get around this with a script. For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
document.createElement(&amp;quot;section&amp;quot;)&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
([http://blog.whatwg.org/supporting-new-elements-in-ie More details].)&lt;br /&gt;
&lt;br /&gt;
== Authoring examples ==&lt;br /&gt;
&lt;br /&gt;
[work in progress [[User:Rikkertkoppes|mophor]]]&lt;br /&gt;
&lt;br /&gt;
This section is intended to give examples of frequently used markup. For a start, the examples given in the specification should be present and elaborated, next, it can be amended with real workd examples. Goal is to concoct a non normative example document for authors accompanying the specification.&lt;br /&gt;
&lt;br /&gt;
* Authoring scientific documents&lt;br /&gt;
* Authoring article based pages (news, blogs)&lt;br /&gt;
&lt;br /&gt;
=== Authoring scientific documents ===&lt;br /&gt;
&lt;br /&gt;
Since the origins of HTML lie in the markup of scientific documents [REF NEEDED], let us start with markup examples for such a document. This will allow us to discuss HTML examples in a layered way, starting relatively simple.&lt;br /&gt;
&lt;br /&gt;
Consider the first page of the document &amp;quot;The Semantic Web Revisited&amp;quot; by Nigel Shadbolt, Wendy Hall and Tim Berners-Lee [http://geospatialsemanticweb.com/wp-content/uploads/2006/07/01637364.pdf], for clarity [http://www.rikkertkoppes.com/whatwg/examples/semantic_web_revisited_page_01.PNG pictured here]. We skip the orangish editor info at the top and start with the document header.&lt;br /&gt;
&lt;br /&gt;
The document contains one article, hence the [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-article-element article] element is a suitable choice here, starting with a [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-header-element header] element.&lt;br /&gt;
&lt;br /&gt;
Notice the nested [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-address-element address] element representing the document authors. The address element represents the contact information for the sectioning content it applies to, which is, in this case, the article element.&lt;br /&gt;
&lt;br /&gt;
The following elements &amp;lt;em title=&amp;quot;16:22, 6 March 2009 (UTC)&amp;quot;&amp;gt;currently&amp;lt;/em&amp;gt; fall in the sectioning content category:&lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-section-element section]&lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-nav-element nav]&lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-article-element article]&lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-aside-element aside]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;article&amp;gt;&lt;br /&gt;
  &amp;lt;header&amp;gt;&lt;br /&gt;
    &amp;lt;h1&amp;gt;The Semantic Web Revisited&amp;lt;/h1&amp;gt;&lt;br /&gt;
    &amp;lt;address&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Nigel Shadbolt and Wendy Hall, University of Southampton&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Tim Berners-Lee, Massachusetts Institute of Technology&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/address&amp;gt;&lt;br /&gt;
  &amp;lt;/header&amp;gt;&lt;br /&gt;
  &amp;lt;!-- rest of the document --&amp;gt;&lt;br /&gt;
&amp;lt;/article&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next, the article contains a series of sections, hence the [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-section-element section] element. Note the capital &amp;quot;I&amp;quot; is not explicitely marked.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;article&amp;gt;&lt;br /&gt;
  &amp;lt;!-- header --&amp;gt;&lt;br /&gt;
  &amp;lt;section&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;In the 50 years [...] instantaneously.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;Fifty years ago [...] research.&amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;/section&amp;gt;&lt;br /&gt;
  &amp;lt;!-- rest of the document --&amp;gt;&lt;br /&gt;
&amp;lt;/article&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;article&amp;gt;&lt;br /&gt;
  &amp;lt;!-- first part of the document --&amp;gt;&lt;br /&gt;
  &amp;lt;section&amp;gt;&lt;br /&gt;
    &amp;lt;h2&amp;gt;From documents to data and information&amp;lt;/h2&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;The original [...] unrealized.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;A Web of data [...] Web.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;The article included [...] Web.&amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;/section&amp;gt;&lt;br /&gt;
  &amp;lt;!-- rest of the document --&amp;gt;&lt;br /&gt;
&amp;lt;/article&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[about sectioning content and headers counting]&lt;br /&gt;
&lt;br /&gt;
Figures are not only images, but also for example code listings [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-figure-element], in general, anything which can be moved away from the main flow of the document without affecting the document&#039;s meaning. One [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-legend-element legend] element in the figure (if present as first or last child) represents the figure caption.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;figure&amp;gt;&lt;br /&gt;
  &amp;lt;img src=&amp;quot;ericmiller_rdf.png&amp;quot; alt=&amp;quot;A graphic representation of &lt;br /&gt;
    the RDF/XML document as given in the next figure.&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;legend&amp;gt;An RDF graph representing Eric Miller.&amp;lt;/legend&amp;gt;&lt;br /&gt;
&amp;lt;/figure&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;figure&amp;gt;&lt;br /&gt;
  &amp;amp;lt;pre&amp;amp;gt;&amp;lt;code class=&amp;quot;language-rdf/xml&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;!-- the actual rdf snippet representinf Eric Miller --&amp;gt;&lt;br /&gt;
  &amp;lt;/code&amp;gt;&amp;amp;lt;/pre&amp;amp;gt;&lt;br /&gt;
  &amp;lt;legend&amp;gt;A chunk of RDF in RDF/XML describing Eric Miller and &lt;br /&gt;
    corresponding to the graph in Figure A.&amp;lt;/legend&amp;gt;&lt;br /&gt;
&amp;lt;/figure&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that the phrase &amp;quot;Figure A&amp;quot; is not part of the legend. This is typically handled through CSS [REF NEEDED].&lt;br /&gt;
&lt;br /&gt;
In the documents, some quotes from the text are extracted as an eye-catcher. These quotes, marked with a [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-q-element q] element, are additionally marked with an [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-aside-element aside] element.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;aside&amp;gt;&lt;br /&gt;
  &amp;lt;q&amp;gt;URIs have global scope [...] of it.&amp;lt;/q&amp;gt;&lt;br /&gt;
&amp;lt;/aside&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rikkertkoppes</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Authoring&amp;diff=3559</id>
		<title>Authoring</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Authoring&amp;diff=3559"/>
		<updated>2009-03-06T16:30:00Z</updated>

		<summary type="html">&lt;p&gt;Rikkertkoppes: /* Authoring scientific documents */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please add tips here on using HTML-5-specific features, and making them compatible with older browsers.&lt;br /&gt;
&lt;br /&gt;
== Getting Internet Explorer to recognize the new elements ==&lt;br /&gt;
&lt;br /&gt;
Internet Explorer will not style elements it doesn&#039;t recognize. You can get around this with a script. For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
document.createElement(&amp;quot;section&amp;quot;)&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
([http://blog.whatwg.org/supporting-new-elements-in-ie More details].)&lt;br /&gt;
&lt;br /&gt;
== Authoring examples ==&lt;br /&gt;
&lt;br /&gt;
This section is intended to give examples of frequently used markup. For a start, the examples given in the specification should be present and elaborated, next, it can be amended with real workd examples. Goal is to concoct a non normative example document for authors accompanying the specification.&lt;br /&gt;
&lt;br /&gt;
* Authoring scientific documents&lt;br /&gt;
* Authoring article based pages (news, blogs)&lt;br /&gt;
&lt;br /&gt;
=== Authoring scientific documents ===&lt;br /&gt;
&lt;br /&gt;
Since the origins of HTML lie in the markup of scientific documents [REF NEEDED], let us start with markup examples for such a document. This will allow us to discuss HTML examples in a layered way, starting relatively simple.&lt;br /&gt;
&lt;br /&gt;
Consider the first page of the document &amp;quot;The Semantic Web Revisited&amp;quot; by Nigel Shadbolt, Wendy Hall and Tim Berners-Lee [http://geospatialsemanticweb.com/wp-content/uploads/2006/07/01637364.pdf], for clarity [http://www.rikkertkoppes.com/whatwg/examples/semantic_web_revisited_page_01.PNG pictured here]. We skip the orangish editor info at the top and start with the document header.&lt;br /&gt;
&lt;br /&gt;
The document contains one article, hence the [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-article-element article] element is a suitable choice here, starting with a [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-header-element header] element.&lt;br /&gt;
&lt;br /&gt;
Notice the nested [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-address-element address] element representing the document authors. The address element represents the contact information for the sectioning content it applies to, which is, in this case, the article element.&lt;br /&gt;
&lt;br /&gt;
The following elements &amp;lt;em title=&amp;quot;16:22, 6 March 2009 (UTC)&amp;quot;&amp;gt;currently&amp;lt;/em&amp;gt; fall in the sectioning content category:&lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-section-element section]&lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-nav-element nav]&lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-article-element article]&lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-aside-element aside]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;article&amp;gt;&lt;br /&gt;
  &amp;lt;header&amp;gt;&lt;br /&gt;
    &amp;lt;h1&amp;gt;The Semantic Web Revisited&amp;lt;/h1&amp;gt;&lt;br /&gt;
    &amp;lt;address&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Nigel Shadbolt and Wendy Hall, University of Southampton&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Tim Berners-Lee, Massachusetts Institute of Technology&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/address&amp;gt;&lt;br /&gt;
  &amp;lt;/header&amp;gt;&lt;br /&gt;
  &amp;lt;!-- rest of the document --&amp;gt;&lt;br /&gt;
&amp;lt;/article&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next, the article contains a series of sections, hence the [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-section-element section] element. Note the capital &amp;quot;I&amp;quot; is not explicitely marked.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;article&amp;gt;&lt;br /&gt;
  &amp;lt;!-- header --&amp;gt;&lt;br /&gt;
  &amp;lt;section&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;In the 50 years [...] instantaneously.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;Fifty years ago [...] research.&amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;/section&amp;gt;&lt;br /&gt;
  &amp;lt;!-- rest of the document --&amp;gt;&lt;br /&gt;
&amp;lt;/article&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;article&amp;gt;&lt;br /&gt;
  &amp;lt;!-- first part of the document --&amp;gt;&lt;br /&gt;
  &amp;lt;section&amp;gt;&lt;br /&gt;
    &amp;lt;h2&amp;gt;From documents to data and information&amp;lt;/h2&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;The original [...] unrealized.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;A Web of data [...] Web.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;The article included [...] Web.&amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;/section&amp;gt;&lt;br /&gt;
  &amp;lt;!-- rest of the document --&amp;gt;&lt;br /&gt;
&amp;lt;/article&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[about sectioning content and headers counting]&lt;br /&gt;
&lt;br /&gt;
Figures are not only images, but also for example code listings [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-figure-element], in general, anything which can be moved away from the main flow of the document without affecting the document&#039;s meaning. One [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-legend-element legend] element in the figure (if present as first or last child) represents the figure caption.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;figure&amp;gt;&lt;br /&gt;
  &amp;lt;img src=&amp;quot;ericmiller_rdf.png&amp;quot; alt=&amp;quot;A graphic representation of &lt;br /&gt;
    the RDF/XML document as given in the next figure.&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;legend&amp;gt;An RDF graph representing Eric Miller.&amp;lt;/legend&amp;gt;&lt;br /&gt;
&amp;lt;/figure&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;figure&amp;gt;&lt;br /&gt;
  &amp;amp;lt;pre&amp;amp;gt;&amp;lt;code class=&amp;quot;language-rdf/xml&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;!-- the actual rdf snippet representinf Eric Miller --&amp;gt;&lt;br /&gt;
  &amp;lt;/code&amp;gt;&amp;amp;lt;/pre&amp;amp;gt;&lt;br /&gt;
  &amp;lt;legend&amp;gt;A chunk of RDF in RDF/XML describing Eric Miller and &lt;br /&gt;
    corresponding to the graph in Figure A.&amp;lt;/legend&amp;gt;&lt;br /&gt;
&amp;lt;/figure&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that the phrase &amp;quot;Figure A&amp;quot; is not part of the legend. This is typically handled through CSS [REF NEEDED].&lt;br /&gt;
&lt;br /&gt;
In the documents, some quotes from the text are extracted as an eye-catcher. These quotes, marked with a [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-q-element q] element, are additionally marked with an [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-aside-element aside] element.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;aside&amp;gt;&lt;br /&gt;
  &amp;lt;q&amp;gt;URIs have global scope [...] of it.&amp;lt;/q&amp;gt;&lt;br /&gt;
&amp;lt;/aside&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rikkertkoppes</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Authoring&amp;diff=3558</id>
		<title>Authoring</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Authoring&amp;diff=3558"/>
		<updated>2009-03-06T16:22:46Z</updated>

		<summary type="html">&lt;p&gt;Rikkertkoppes: /* Authoring examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please add tips here on using HTML-5-specific features, and making them compatible with older browsers.&lt;br /&gt;
&lt;br /&gt;
== Getting Internet Explorer to recognize the new elements ==&lt;br /&gt;
&lt;br /&gt;
Internet Explorer will not style elements it doesn&#039;t recognize. You can get around this with a script. For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
document.createElement(&amp;quot;section&amp;quot;)&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
([http://blog.whatwg.org/supporting-new-elements-in-ie More details].)&lt;br /&gt;
&lt;br /&gt;
== Authoring examples ==&lt;br /&gt;
&lt;br /&gt;
This section is intended to give examples of frequently used markup. For a start, the examples given in the specification should be present and elaborated, next, it can be amended with real workd examples. Goal is to concoct a non normative example document for authors accompanying the specification.&lt;br /&gt;
&lt;br /&gt;
* Authoring scientific documents&lt;br /&gt;
* Authoring article based pages (news, blogs)&lt;br /&gt;
&lt;br /&gt;
=== Authoring scientific documents ===&lt;br /&gt;
&lt;br /&gt;
Since the origins of HTML lie in the markup of scientific documents [REF NEEDED], let us start with markup examples for such a document. This will allow us to discuss HTML examples in a layered way, starting relatively simple.&lt;br /&gt;
&lt;br /&gt;
Consider the first page of the document &amp;quot;The Semantic Web Revisited&amp;quot; by Nigel Shadbolt, Wendy Hall and Tim Berners-Lee [http://geospatialsemanticweb.com/wp-content/uploads/2006/07/01637364.pdf], for clarity [http://www.rikkertkoppes.com/whatwg/examples/semantic_web_revisited_page_01.PNG pictured here]. We skip the orangish editor info at the top and start with the document header.&lt;br /&gt;
&lt;br /&gt;
The document contains one article, hence the [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-article-element article] element is a suitable choice here, starting with a [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-header-element header] element.&lt;br /&gt;
&lt;br /&gt;
Notice the nested [http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-address-element address] element representing the document authors. The address element represents the contact information for the sectioning content it applies to, which is, in this case, the article element.&lt;br /&gt;
&lt;br /&gt;
The following elements &amp;lt;em title=&amp;quot;16:22, 6 March 2009 (UTC)&amp;quot;&amp;gt;currently&amp;lt;/em&amp;gt; fall in the sectioning content category:&lt;br /&gt;
* section&lt;br /&gt;
* nav&lt;br /&gt;
* article&lt;br /&gt;
* aside&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;article&amp;gt;&lt;br /&gt;
  &amp;lt;header&amp;gt;&lt;br /&gt;
    &amp;lt;h1&amp;gt;The Semantic Web Revisited&amp;lt;/h1&amp;gt;&lt;br /&gt;
    &amp;lt;address&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Nigel Shadbolt and Wendy Hall, University of Southampton&amp;lt;/p&amp;gt;&lt;br /&gt;
      &amp;lt;p&amp;gt;Tim Berners-Lee, Massachusetts Institute of Technology&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/address&amp;gt;&lt;br /&gt;
  &amp;lt;/header&amp;gt;&lt;br /&gt;
  &amp;lt;!-- rest of the document --&amp;gt;&lt;br /&gt;
&amp;lt;/article&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next, the article contains a series of sections, hence the section element. Note the capital &amp;quot;I&amp;quot; is not explicitely marked.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;article&amp;gt;&lt;br /&gt;
  &amp;lt;!-- header --&amp;gt;&lt;br /&gt;
  &amp;lt;section&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;In the 50 years [...] instantaneously.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;Fifty years ago [...] research.&amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;/section&amp;gt;&lt;br /&gt;
  &amp;lt;!-- rest of the document --&amp;gt;&lt;br /&gt;
&amp;lt;/article&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;article&amp;gt;&lt;br /&gt;
  &amp;lt;!-- first part of the document --&amp;gt;&lt;br /&gt;
  &amp;lt;section&amp;gt;&lt;br /&gt;
    &amp;lt;h2&amp;gt;From documents to data and information&amp;lt;/h2&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;The original [...] unrealized.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;A Web of data [...] Web.&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;The article included [...] Web.&amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;/section&amp;gt;&lt;br /&gt;
  &amp;lt;!-- rest of the document --&amp;gt;&lt;br /&gt;
&amp;lt;/article&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[about sectioning content and headers counting]&lt;br /&gt;
&lt;br /&gt;
Figures are not only images, but also for example code listings, in general, anything which can be moved away from the main flow of the document without affecting the document&#039;s meaning. One legend element in the figure (if present as first or last child) represents the figure caption.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;figure&amp;gt;&lt;br /&gt;
 &amp;lt;img src=&amp;quot;ericmiller_rdf.png&amp;quot; alt=&amp;quot;A graphic representation of the RDF/XML document as given in the next figure.&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;legend&amp;gt;An RDF graph representing Eric Miller.&amp;lt;/legend&amp;gt;&lt;br /&gt;
&amp;lt;/figure&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;figure&amp;gt;&lt;br /&gt;
  &amp;amp;lt;pre&amp;amp;gt;&amp;lt;code class=&amp;quot;language-rdf/xml&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;!-- the actual rdf snippet representinf Eric Miller --&amp;gt;&lt;br /&gt;
  &amp;lt;/code&amp;gt;&amp;amp;lt;/pre&amp;amp;gt;&lt;br /&gt;
  &amp;lt;legend&amp;gt;A chunk of RDF in RDF/XML describing Eric Miller and corresponding to the graph in Figure A.&amp;lt;/legend&amp;gt;&lt;br /&gt;
&amp;lt;/figure&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that the phrase &amp;quot;Figure A&amp;quot; is not part of the legend. This is typically handled through CSS [REF NEEDED].&lt;br /&gt;
&lt;br /&gt;
In the documents, some quotes from the text are extracted as an eye-catcher. These quotes, marked with a q element, are additionally marked with an aside element.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;aside&amp;gt;&lt;br /&gt;
  &amp;lt;q&amp;gt;URIs have global scope. Associating a URI with a resource means that anyone can link to it, refer to it, or retrieve a representation of it.&amp;lt;/q&amp;gt;&lt;br /&gt;
&amp;lt;/aside&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rikkertkoppes</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Authoring&amp;diff=3553</id>
		<title>Authoring</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Authoring&amp;diff=3553"/>
		<updated>2009-03-04T10:49:38Z</updated>

		<summary type="html">&lt;p&gt;Rikkertkoppes: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please add tips here on using HTML-5-specific features, and making them compatible with older browsers.&lt;br /&gt;
&lt;br /&gt;
== Getting Internet Explorer to recognize the new elements ==&lt;br /&gt;
&lt;br /&gt;
Internet Explorer will not style elements it doesn&#039;t recognize. You can get around this with a script. For example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;script&amp;gt;&lt;br /&gt;
document.createElement(&amp;quot;section&amp;quot;)&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
([http://blog.whatwg.org/supporting-new-elements-in-ie More details].)&lt;br /&gt;
&lt;br /&gt;
== Authoring examples ==&lt;br /&gt;
&lt;br /&gt;
This section is intended to give examples of frequently used markup. For a start, the examples given in the specification should be present and elaborated, next, it can be amended with real workd examples. Goal is to concoct a non normative example document for authors accompanying the specification.&lt;br /&gt;
&lt;br /&gt;
* Authoring scientific documents&lt;br /&gt;
* Authoring article based pages (news, blogs)&lt;/div&gt;</summary>
		<author><name>Rikkertkoppes</name></author>
	</entry>
</feed>