<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Semantic Markup &#8211; Create, Support and Extract</title>
	<atom:link href="http://nate.koechley.com/blog/2005/02/09/semantic-markup-create-support-and-extract/feed/" rel="self" type="application/rss+xml" />
	<link>http://nate.koechley.com/blog/2005/02/09/semantic-markup-create-support-and-extract/</link>
	<description>Web professional with deep frontend engineering expertise skilled in user experience design and product strategy. Successful team leader, manager, and executive. Sought-after speaker, writer, and trainer.</description>
	<lastBuildDate>Mon, 24 May 2010 15:52:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nate Koechley</title>
		<link>http://nate.koechley.com/blog/2005/02/09/semantic-markup-create-support-and-extract/comment-page-1/#comment-145</link>
		<dc:creator>Nate Koechley</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://nate.koechley.com/blog/?p=271#comment-145</guid>
		<description>yes, i know this isn&#039;t the most semantic website. you&#039;re welcome to leave all the nasty comments you want. It will be more semantic someday, but for now this is just an informal little blog.

ok, on with the comments. thanks.</description>
		<content:encoded><![CDATA[<p>yes, i know this isn&#8217;t the most semantic website. you&#8217;re welcome to leave all the nasty comments you want. It will be more semantic someday, but for now this is just an informal little blog.</p>
<p>ok, on with the comments. thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joshua Porter</title>
		<link>http://nate.koechley.com/blog/2005/02/09/semantic-markup-create-support-and-extract/comment-page-1/#comment-146</link>
		<dc:creator>Joshua Porter</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://nate.koechley.com/blog/?p=271#comment-146</guid>
		<description>Nate, this is an interesting idea. However, I&#039;m confused by the term &quot;Layered Semanticm Markup&quot;. As you state, there is only one document marked up semantically. This leads me to believe that neither the markup nor the semantics are layered, which would seem contrary to the term itself. 

Am I missing something?</description>
		<content:encoded><![CDATA[<p>Nate, this is an interesting idea. However, I&#8217;m confused by the term &#8220;Layered Semanticm Markup&#8221;. As you state, there is only one document marked up semantically. This leads me to believe that neither the markup nor the semantics are layered, which would seem contrary to the term itself. </p>
<p>Am I missing something?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lantzilla</title>
		<link>http://nate.koechley.com/blog/2005/02/09/semantic-markup-create-support-and-extract/comment-page-1/#comment-147</link>
		<dc:creator>lantzilla</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://nate.koechley.com/blog/?p=271#comment-147</guid>
		<description>If I had to garner a guess, I&#039;d say that it&#039;s &quot;layered&quot;, because we break down the components by function HTML (Structure), CSS (Presentation) DOM/Javascript (Behavior). The point being that you can strip away the presentation layer, and the document remains semantically the same. Take all those components, stack them on top of each other, and you have the concept of layers.</description>
		<content:encoded><![CDATA[<p>If I had to garner a guess, I&#8217;d say that it&#8217;s &#8220;layered&#8221;, because we break down the components by function HTML (Structure), CSS (Presentation) DOM/Javascript (Behavior). The point being that you can strip away the presentation layer, and the document remains semantically the same. Take all those components, stack them on top of each other, and you have the concept of layers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nate Koechley</title>
		<link>http://nate.koechley.com/blog/2005/02/09/semantic-markup-create-support-and-extract/comment-page-1/#comment-148</link>
		<dc:creator>Nate Koechley</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://nate.koechley.com/blog/?p=271#comment-148</guid>
		<description>&lt;p&gt;Hey Joshua, nice to see you here. I was just reading some of your stuff last night!&lt;/p&gt;

&lt;p&gt;Lance&#039;s guess was pretty close. The idea is a &quot;semantic&quot; foundataion on which the rest of the development is &quot;layered&quot;. It&#039;s not the world&#039;s best TLA, but it works (especially for it&#039;s internal uses here at work).&lt;/p&gt;

&lt;p&gt;That said, we&#039;re also trying to do some layering of semantics. It&#039;s not particularily intuitive, and I&#039;m not sure of the long-term value yet, but it seems like the right way to go. While most web semantics come from longstanding HTML (as it were), I also think it&#039;s possible to &lt;em&gt;grant&lt;/em&gt; semantics through consistent use. If every required form element we create is class=&quot;required&quot;, well, I believe that&#039;s better than having 10 different conventions (or none at all).&lt;/p&gt;

&lt;p&gt;Another example is how I&#039;m coding generic modules. For every module, we&#039;re standardizing on &lt;em&gt;head&lt;/em&gt;, &lt;em&gt;body&lt;/em&gt;, and as necessary &lt;em&gt;footer&lt;/em&gt; regions:

&lt;pre&gt;
&lt;div&gt;
  &lt;div class=&quot;hd&quot;&gt;&lt;/div&gt;
  &lt;div class=&quot;bd&quot;&gt;&lt;/div&gt;
  &lt;div class=&quot;ft&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/pre&gt;
&lt;/p&gt;

&lt;p&gt;The cite element is good, but more precision by indicating publisher, dateline, byline, author can only help.&lt;/p&gt;

&lt;p&gt;And so while this &quot;granted semantics&quot; isn&#039;t the key of LSM, it&#039;s an additional way to think about things, and an additional type of value to add.&lt;/p&gt;

&lt;p&gt;Again, the main idea was to provide an understanding of meaningful markup and layered development, that didn&#039;t use any particular technology in it&#039;s description. Basically, saying &quot;tableless&quot; all the time wasn&#039;t helping my cause.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Hey Joshua, nice to see you here. I was just reading some of your stuff last night!</p>
<p>Lance&#8217;s guess was pretty close. The idea is a &#8220;semantic&#8221; foundataion on which the rest of the development is &#8220;layered&#8221;. It&#8217;s not the world&#8217;s best TLA, but it works (especially for it&#8217;s internal uses here at work).</p>
<p>That said, we&#8217;re also trying to do some layering of semantics. It&#8217;s not particularily intuitive, and I&#8217;m not sure of the long-term value yet, but it seems like the right way to go. While most web semantics come from longstanding HTML (as it were), I also think it&#8217;s possible to <em>grant</em> semantics through consistent use. If every required form element we create is class=&#8221;required&#8221;, well, I believe that&#8217;s better than having 10 different conventions (or none at all).</p>
<p>Another example is how I&#8217;m coding generic modules. For every module, we&#8217;re standardizing on <em>head</em>, <em>body</em>, and as necessary <em>footer</em> regions:</p>
<pre>
&lt;div&gt;
  &lt;div class=&quot;hd&quot;&gt;&lt;/div&gt;
  &lt;div class=&quot;bd&quot;&gt;&lt;/div&gt;
  &lt;div class=&quot;ft&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
</pre>
</p>
<p>The cite element is good, but more precision by indicating publisher, dateline, byline, author can only help.</p>
<p>And so while this &#8220;granted semantics&#8221; isn&#8217;t the key of LSM, it&#8217;s an additional way to think about things, and an additional type of value to add.</p>
<p>Again, the main idea was to provide an understanding of meaningful markup and layered development, that didn&#8217;t use any particular technology in it&#8217;s description. Basically, saying &#8220;tableless&#8221; all the time wasn&#8217;t helping my cause.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kent Brewster</title>
		<link>http://nate.koechley.com/blog/2005/02/09/semantic-markup-create-support-and-extract/comment-page-1/#comment-149</link>
		<dc:creator>Kent Brewster</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://nate.koechley.com/blog/?p=271#comment-149</guid>
		<description>Erm ... the links to &lt;a href=&quot;http://www.hesketh.com/publications/inclusive_web_design_for_the_future/&quot; rel=&quot;nofollow&quot;&gt;Progressive Enhancement&lt;/a&gt; and &lt;a href=&quot;http://www.onlinetools.org/articles/unobtrusivejavascript/&quot; rel=&quot;nofollow&quot;&gt;Unobtrusive Javascript&lt;/a&gt; are busted.</description>
		<content:encoded><![CDATA[<p>Erm &#8230; the links to <a href="http://www.hesketh.com/publications/inclusive_web_design_for_the_future/" rel="nofollow">Progressive Enhancement</a> and <a href="http://www.onlinetools.org/articles/unobtrusivejavascript/" rel="nofollow">Unobtrusive Javascript</a> are busted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nate Koechley</title>
		<link>http://nate.koechley.com/blog/2005/02/09/semantic-markup-create-support-and-extract/comment-page-1/#comment-150</link>
		<dc:creator>Nate Koechley</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://nate.koechley.com/blog/?p=271#comment-150</guid>
		<description>Good catch Kent, I fixed the typo. Thanks.</description>
		<content:encoded><![CDATA[<p>Good catch Kent, I fixed the typo. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: strimble</title>
		<link>http://nate.koechley.com/blog/2005/02/09/semantic-markup-create-support-and-extract/comment-page-1/#comment-151</link>
		<dc:creator>strimble</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://nate.koechley.com/blog/?p=271#comment-151</guid>
		<description>Hey Nate,

&lt;p&gt;
Good article!  In response to your comment on Feb 11, I&#039;m guessing that saying &#039;tableless&#039; wouldn&#039;t help your cause since if a page is using semantic markup, wouldn&#039;t it mean that tables should be used for tabular data?  So, it wouldn&#039;t exactly be &#039;tableless&#039;...right?
&lt;/p&gt;
&lt;p&gt;
Oh, and btw, my site isn&#039;t semantic either and I think it sucks too!  Especially the part with the jokes that I try to hide by having a blog (the one that I interviewed with).  I don&#039;t seem to get any nasty comments about it though.  But you can leave some if you&#039;d like!  I won&#039;t get offended.
&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Hey Nate,</p>
<p>
Good article!  In response to your comment on Feb 11, I&#8217;m guessing that saying &#8216;tableless&#8217; wouldn&#8217;t help your cause since if a page is using semantic markup, wouldn&#8217;t it mean that tables should be used for tabular data?  So, it wouldn&#8217;t exactly be &#8216;tableless&#8217;&#8230;right?
</p>
<p>
Oh, and btw, my site isn&#8217;t semantic either and I think it sucks too!  Especially the part with the jokes that I try to hide by having a blog (the one that I interviewed with).  I don&#8217;t seem to get any nasty comments about it though.  But you can leave some if you&#8217;d like!  I won&#8217;t get offended.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blog-Fu</title>
		<link>http://nate.koechley.com/blog/2005/02/09/semantic-markup-create-support-and-extract/comment-page-1/#comment-152</link>
		<dc:creator>Blog-Fu</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://nate.koechley.com/blog/?p=271#comment-152</guid>
		<description>&lt;strong&gt;Today’s Wrong Solution is Tomorrow’s Constraint&lt;/strong&gt;

Nate Koechley has some great ideas. The latest is about Layered Semantic Markup. LSM is a development framework for creating Web documents and experiences. LSM builds for the least capable devices first, then enhances those documents with separate logi...</description>
		<content:encoded><![CDATA[<p><strong>Today’s Wrong Solution is Tomorrow’s Constraint</strong></p>
<p>Nate Koechley has some great ideas. The latest is about Layered Semantic Markup. LSM is a development framework for creating Web documents and experiences. LSM builds for the least capable devices first, then enhances those documents with separate logi&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blog-Fu</title>
		<link>http://nate.koechley.com/blog/2005/02/09/semantic-markup-create-support-and-extract/comment-page-1/#comment-153</link>
		<dc:creator>Blog-Fu</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://nate.koechley.com/blog/?p=271#comment-153</guid>
		<description>&lt;strong&gt;Today’s Wrong Solution is Tomorrow’s Constraint&lt;/strong&gt;

Nate Koechley has some great ideas. The latest is about Layered Semantic Markup. LSM is a development framework for creating Web documents and experiences. LSM builds for the least capable devices first, then enhances those documents with separate logi...
</description>
		<content:encoded><![CDATA[<p><strong>Today’s Wrong Solution is Tomorrow’s Constraint</strong></p>
<p>Nate Koechley has some great ideas. The latest is about Layered Semantic Markup. LSM is a development framework for creating Web documents and experiences. LSM builds for the least capable devices first, then enhances those documents with separate logi&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

