<?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=Marc+Engelhardt</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=Marc+Engelhardt"/>
	<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/wiki/Special:Contributions/Marc_Engelhardt"/>
	<updated>2026-04-29T12:58:26Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Authoring&amp;diff=4225</id>
		<title>Authoring</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Authoring&amp;diff=4225"/>
		<updated>2009-11-09T20:08:49Z</updated>

		<summary type="html">&lt;p&gt;Marc Engelhardt: Section added; Link added&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;
== Externel tutorial sites ==&lt;br /&gt;
* [http://www.html5-knowledge-base.com/ HTML5 Knowledge Base]&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 world examples. The 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>Marc Engelhardt</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Main_Page&amp;diff=4219</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Main_Page&amp;diff=4219"/>
		<updated>2009-11-08T12:13:54Z</updated>

		<summary type="html">&lt;p&gt;Marc Engelhardt: HTML5 Knowledge Base link added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the WHATWG Wiki!&lt;br /&gt;
&lt;br /&gt;
You can be a part of our community, making proposals for the next version of HTML5. This wiki is made available for you for drafting proposals, for writing essays, for keeping track of HTML-related issues, and so forth. Anyone can create an account and contribute content.&lt;br /&gt;
&lt;br /&gt;
Before you begin, you may wish to read our [[WHATWG Wiki:Contribution Guidelines|contribution guidelines]].&lt;br /&gt;
&lt;br /&gt;
==Purpose==&lt;br /&gt;
The purpose of the WHATWG Wiki is to create a place for WHATWG contributors to post and compile their own proposals and ideas regarding WHATWG specifications. The specifications themselves will not be available for editing via this wiki. However, ideas you post here may find their way into current and future WHATWG specifications.&lt;br /&gt;
&lt;br /&gt;
== Main sections and Quick links ==&lt;br /&gt;
* [[FAQ]]&lt;br /&gt;
* [[Implementations]]&lt;br /&gt;
* [[What you can do]] — &#039;&#039;&#039;[[Reviewing HTML5|Help us review HTML5!]]&lt;br /&gt;
* [[Authoring|Using HTML 5 in your Web site]]&lt;br /&gt;
* [[Presentational elements and attributes]]&lt;br /&gt;
* [[HTML vs. XHTML]]&lt;br /&gt;
* [[HTML5 Presentations]]&lt;br /&gt;
* [[Issue Discussion]]&lt;br /&gt;
* [[Feature Proposals]]&lt;br /&gt;
* [[Spec coordination]]&lt;br /&gt;
* [[IDE]]&lt;br /&gt;
* [[Testsuite]]&lt;br /&gt;
&lt;br /&gt;
==WHATWG Specifications==&lt;br /&gt;
* [[HTML 5]]&lt;br /&gt;
** [[HTML5 References]]&lt;br /&gt;
* [[Web Workers]]&lt;br /&gt;
&lt;br /&gt;
==Communicating with the community==&lt;br /&gt;
The WHATWG community has several channels of communication:&lt;br /&gt;
* [http://www.whatwg.org/mailing-list Mailing lists]&lt;br /&gt;
* [http://hixietracker.blogspot.com/ Hixie Tracker]; A blog that only tracks e-mails to the WHATWG list that are written by the editor&lt;br /&gt;
* [http://blog.whatwg.org/ The blog], including [http://blog.whatwg.org/category/weekly-review Mark Pilgrim&#039;s column &amp;quot;This week in HTML5&amp;quot;]&lt;br /&gt;
* [http://www.w3.org/html/planet/ W3C&#039;s &amp;quot;HTML5 planet&amp;quot;]&lt;br /&gt;
* [http://forums.whatwg.org/ The forum]&lt;br /&gt;
* [[IRC]]&lt;br /&gt;
* [http://lastweekinhtml5.blogspot.com/ Jean-Baptiste&#039;s &amp;quot;Last week in HTML5&amp;quot;]; A blog that highlights controversial comments on the IRC channel&lt;br /&gt;
* [http://wiki.whatwg.org/ This wiki]&lt;br /&gt;
* [http://www.html5-knowledge-base.com/ HTML5 Knowledge Base]&lt;br /&gt;
&lt;br /&gt;
== Research and data ==&lt;br /&gt;
Research pertaining to and data on publishing behavior for various bits of markup, used to help drive decisions made in/for HTML5 for specific elements and attributes.&lt;br /&gt;
&lt;br /&gt;
Elements: (perhaps abstract to an [[elements]] page if many more are added)&lt;br /&gt;
* [[cite]]&lt;br /&gt;
* [[time]] &lt;br /&gt;
Attributes: (perhaps abstract to an [[attributes]] page if many more are added)&lt;br /&gt;
* [[charset]] &lt;br /&gt;
* [[summary]]&lt;/div&gt;</summary>
		<author><name>Marc Engelhardt</name></author>
	</entry>
</feed>