xfolk-pollas: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
No edit summary
(reverting spam)
 
(5 intermediate revisions by 5 users not shown)
Line 1: Line 1:
= Anders Pollas =
= Anders Pollas =
<p>Anders Pollas maintains a [http://pollas.dk/ blog] where he discusses music, media, and new means of distribution for information products.  His link blog already has many semantic elements.  Here is the version before xFolk with items to be changed marked with a comment at the end of the line.  Note that Pollas does not publish tags for his links.</p>
<p>Anders Pollas maintains a [http://pollas.dk/ blog] where he discusses music, media, and new means of distribution for information products.  His link blog already has many semantic elements.  Here is the version before xFolk with items to be changed marked with a comment at the end of the line.  Note that Pollas does not publish tags for his links.</p>
<pre>&lt;ul class="delicious"&gt;
  &lt;li&gt;
    &lt;a href="http://db.tidbits.com/getbits.acgi?tbart=07140"&gt;
      TidBITS: Catching Up with the Voice of Macintosh: Fred
    &lt;/a&gt;
    &lt;div class="extended"&gt; <!-- will change -->
      Airport meetup with ... Fred
    &lt;/div&gt;
  &lt;/li&gt;
&lt;/ul&gt;</pre>
<p>One issue with Pollas' strategy is that he specifies a collection of entries vs. one entry at a time as required by xFolk.  Therefore, we will have to add a container element for the entry.  Here is the altered version.</p>
<pre>&lt;ul class="delicious"&gt;
  &lt;li class="xfolkentry"&gt; <!-- changed -->
    &lt;a class="taggedlink" <!-- changed -->
    href="http://db.tidbits.com/getbits.acgi?tbart=07140"&gt;
      TidBITS: Catching Up with the Voice of Macintosh: Fred
    &lt;/a&gt;
    &lt;div class="description"&gt; <!-- changed -->
      Airport meetup with ... Fred
    &lt;/div&gt;
  &lt;/li&gt;
&lt;/ul&gt;</pre>

Latest revision as of 22:15, 20 December 2008

Anders Pollas

Anders Pollas maintains a blog where he discusses music, media, and new means of distribution for information products. His link blog already has many semantic elements. Here is the version before xFolk with items to be changed marked with a comment at the end of the line. Note that Pollas does not publish tags for his links.

<ul class="delicious">
  <li>
    <a href="http://db.tidbits.com/getbits.acgi?tbart=07140">
      TidBITS: Catching Up with the Voice of Macintosh: Fred
    </a> 
    <div class="extended"> <!-- will change -->
      Airport meetup with ... Fred
    </div>
  </li>
</ul>

One issue with Pollas' strategy is that he specifies a collection of entries vs. one entry at a time as required by xFolk. Therefore, we will have to add a container element for the entry. Here is the altered version.

<ul class="delicious">
  <li class="xfolkentry"> <!-- changed -->
    <a class="taggedlink" <!-- changed -->
     href="http://db.tidbits.com/getbits.acgi?tbart=07140">
      TidBITS: Catching Up with the Voice of Macintosh: Fred
    </a> 
    <div class="description"> <!-- changed -->
      Airport meetup with ... Fred
    </div>
  </li>
</ul>