posh-patterns: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
(emphasize stub nature of page, encourage analysis)
(→‎POSH patterns: Adding the comments posh-pattern)
Line 41: Line 41:
</source>
</source>


=== Comments ===
Tantek Çelik suggested this pattern for comments in the [http://tantek.com/presentations/2005/09/elements-of-xhtml/#slide38 The Elements of Meaningful XHTML]:
<source lang="html4strict">
<ol>
  <li>
    <cite><!-- user's name go here --></cite>:
    <blockquote>
      <!-- comment go here -->
    </blockquote>
  </li>
  ...
</ol>
</source>


== related ==
== related ==
* [[posh]]
* [[posh]]
* [[poshformats]]
* [[poshformats]]

Revision as of 21:41, 7 July 2009

POSH patterns

To help discover and make it easier to write proper plain old semantic html (posh), this page documents known patterns of POSH markup used in the wild (no theoretical patterns please, markup from actual URLs on the public web), especially when there is some amount of analysis regarding the patterns.

For a longer description of POSH patterns, see Jeremy Keith's blog post: POSH Patterns.

This page is a stub and could use your help in expanding it. Please read POSH resources, and add good examples you find there along with some analysis.

patterns

navigation

Examples have been provided in IRC (e.g. "Latest New Content" in http://www.communitymx.com/content/article.cfm?page=2&cid=97480 ) that show a pattern of

  • icon/thumbnail/graphic
  • hyperlink to a site section
  • brief description

From the markup of that page (empty elements removed, whitespace added)

<ul>
 <li>
  <img src="/images/photoshopicon.gif" alt="" />
  <a href="/abstract.cfm?cid=34D68">Retro Fitting a Color Match</a>
 </li>
 ...
</ul>

This could be improved both for usability by wrapping the hyperlink around the image (so that clicking the image, something that users often do, does something), and adding the existing rel value from HTML4 rel="section" to the hyperlink:

<ul>
 <li>
  <a rel="section" href="/abstract.cfm?cid=34D68">
   <img src="/images/photoshopicon.gif" alt="" />
   Retro Fitting a Color Match
  </a>
 </li>
  ...
</ul>

Comments

Tantek Çelik suggested this pattern for comments in the The Elements of Meaningful XHTML:

<ol>
  <li>
    <cite><!-- user's name go here --></cite>:
    <blockquote>
      <!-- comment go here -->
    </blockquote>
  </li>
  ...
</ol>

related