Sorry, about that last email.<br>
<br>
Anyway, I am trying to create a simple Rails app to handle my
contacts.&nbsp; It is basically for me to learn Rails, and introduce
myself with microformats in the process.&nbsp; My contact app has the
ability to add just organizations.&nbsp; When they view the
organization, I have it in hCard format.&nbsp; This is what I have come
up with because the hCard wiki is unclear on organization specs.<br>
<br>
&lt;div class=&quot;vcard&quot;&gt;<br>
&nbsp;&lt;a class=&quot;url fn&quot; href=&quot;<a href="http://www.microsoft.com&quot;">http://www.microsoft.com&quot;</a>&gt;&lt;/a&gt;<br>
&nbsp;&lt;div class=&quot;org&quot;&gt;Microsoft Corp&lt;/div&gt;<br>
&nbsp;&lt;div class=&quot;adr&quot;&gt;<br>
&nbsp; &lt;div class=&quot;street-address&quot;&gt;One Microsoft Way&lt;/div&gt;<br>
&nbsp; &lt;span class=&quot;locality&quot;&gt;Redmond&lt;/span&gt;, <br>
&nbsp; &lt;span class=&quot;region&quot;&gt;WA&lt;/span&gt;<br>
&nbsp; &lt;span class=&quot;postal-code&quot;&gt;98052&lt;/span&gt;<br>
&nbsp;&lt;/div&gt;<br>
&nbsp;&lt;div class=&quot;tel&quot;&gt;1-800-642-7676&lt;/div&gt;<br>
&nbsp;&lt;div class=&quot;fax&quot;&gt;1-425-936-7329&lt;/div&gt;<br>
&lt;/div&gt;<br>
<br>
My other question is by adding a link to internal operations for the organization (i.e. org details) would break the hcard?<br>
<br>
Like:<br>
<br>
&lt;div class=&quot;org&quot;&gt;&lt;a href=&quot;interal/show/123&quot;&gt;Microsoft Corp&lt;/a&gt;&lt;/div&gt;<br>
<br>
Thanks,<br>
<br>
Jake Ham<br>