xfolk-julian-bez: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
m (Corrected new version)
No edit summary
Line 1: Line 1:
= Julian Bez =
= Julian Bez =
<p>[http://www.julian-bez.de/blog/ Julian Bez] is a german web designer.  His link blog contains a lot of semantic markup.  It only requires minor alteration to conform with xFolk.  Here's the markup before conversion with items to change commented at the end of the line.</p>
<p>[http://www.julian-bez.de/blog/ Julian Bez] is a german web designer.  His link blog contains a lot of semantic markup.  It only requires minor alteration to conform with xFolk.  Here's the markup before conversion with items to change commented at the end of the line.</p>
<pre>&lt;li id="links"&gt;
  &lt;h3&gt;del.icio.us bookmarks&lt;/h3&gt;
  &lt;p&gt;
    &lt;a rel="bookmark" href="http://37signals.com/svn/archives2/2005/04/amazons_new_clo.php"&gt; <!-- will change -->
      &lt;strong&gt;
        Amazon's new clothes - Signal vs. Noise (by 37signals)
      &lt;/strong&gt;
    &lt;/a&gt;
  &lt;/p&gt;
  &lt;div class="linkcontent"&gt; <!-- will change -->
    &lt;p&gt;
      (Apr 7) It looks like Amazon is trying a new book detail page.
    &lt;/p&gt;
  &lt;/div&gt;
&lt;/li&gt;</pre>
<p>Here's the new version with changes and additions commented at the end of the line.</p>
<pre>&lt;li id="links"&gt;
  &lt;h3&gt;del.icio.us bookmarks&lt;/h3&gt;
  &lt;div class="xfolkentry"> <!-- changed -->
  &lt;p&gt;
    &lt;a rel="bookmark" class="taggedlink" <!-- changed -->
    href="http://37signals.com/svn/archives2/2005/04/amazons_new_clo.php"&gt;
      &lt;strong&gt;
        Amazon's new clothes - Signal vs. Noise (by 37signals)
      &lt;/strong&gt;
    &lt;/a&gt;
  &lt;/p&gt;
  &lt;div class="description"&gt; <!-- changed -->
    &lt;p&gt;
      (Apr 7) It looks like Amazon is trying a new book detail page.
    &lt;/p&gt;
  &lt;/div&gt;
  &lt;/div&gt; <!-- changed -->
&lt;/li&gt;</pre>

Revision as of 11:43, 19 June 2007

Julian Bez

Julian Bez is a german web designer. His link blog contains a lot of semantic markup. It only requires minor alteration to conform with xFolk. Here's the markup before conversion with items to change commented at the end of the line.