In the hCalendar microformat, what markup is allowed in a description? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T05:24:19Zhttp://stackoverflow.com/feeds/question/192538http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/192538/in-the-hcalendar-microformat-what-markup-is-allowed-in-a-description1In the hCalendar microformat, what markup is allowed in a description?Joe Lencioni2008-10-10T18:22:54Z2008-10-11T12:15:34Z
<p>I am working on a calendar application that outputs a list of events in <a href="http://microformats.org/wiki/hcalendar" rel="nofollow">hCalendar format</a>. This includes an element that has a class of "<code>description</code>" which should be used for the event's description. My question is, <strong>what markup is allowed in my hCalendar event's description?</strong></p>
<p>I found one example on the hCalendar website that showed a description with <code><br /></code> tags in it, but every other example was brief and had no additional markup in the description.</p>
http://stackoverflow.com/questions/192538/in-the-hcalendar-microformat-what-markup-is-allowed-in-a-description/194018#1940182Answer by porneL for In the hCalendar microformat, what markup is allowed in a description?porneL2008-10-11T12:15:34Z2008-10-11T12:15:34Z<p>As far as Microformats are concerned, you can use any valid HTML markup in the description (and everywhere else).</p>
<p>However, the <a href="http://tools.ietf.org/html/rfc2445#section-4.8.1.5" rel="nofollow">iCalendar</a> format, which is often used for extraction of hCalendars, only allows plain text in the description.</p>
<p>Use any markup you need, but be prepared that Microformat parsers will convert it to plain text, so likely only <code><br></code>, <code><p></code> will work, and other elements will have no effect.</p>