在 hCalendar 微格式中,描述中允许使用什么标记?
我正在开发一个日历应用程序,它以 hCalendar 格式输出事件列表。 这包括一个具有“description
”类的元素,该类应用于事件的描述。 我的问题是,我的 hCalendar 事件描述中允许使用什么标记?
我在 hCalendar 网站上找到了一个示例,其中显示了带有
标记的描述,但其他每个示例都很简短,并且在描述中没有额外的标记。
I am working on a calendar application that outputs a list of events in hCalendar format. This includes an element that has a class of "description
" which should be used for the event's description. My question is, what markup is allowed in my hCalendar event's description?
I found one example on the hCalendar website that showed a description with <br />
tags in it, but every other example was brief and had no additional markup in the description.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就微格式而言,您可以在描述中(以及其他任何地方)使用任何有效的 HTML 标记。
但是,通常用于提取的 iCalendar 格式hCalendars 的描述中仅允许纯文本。
使用您需要的任何标记,但要做好微格式解析器会将其转换为纯文本的准备,因此可能只有
、可以工作,而其他元素不会产生任何影响。
As far as Microformats are concerned, you can use any valid HTML markup in the description (and everywhere else).
However, the iCalendar format, which is often used for extraction of hCalendars, only allows plain text in the description.
Use any markup you need, but be prepared that Microformat parsers will convert it to plain text, so likely only
<br>
,<p>
will work, and other elements will have no effect.