In the hCalendar microformat, what markup is allowed in a description? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T05:24:19Z http://stackoverflow.com/feeds/question/192538 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/192538/in-the-hcalendar-microformat-what-markup-is-allowed-in-a-description 1 In the hCalendar microformat, what markup is allowed in a description? Joe Lencioni 2008-10-10T18:22:54Z 2008-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>&lt;br /&gt;</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#194018 2 Answer by porneL for In the hCalendar microformat, what markup is allowed in a description? porneL 2008-10-11T12:15:34Z 2008-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>&lt;br&gt;</code>, <code>&lt;p&gt;</code> will work, and other elements will have no effect.</p>