to-do-brainstorming: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
(stub from extracting a brief old brainstorm from /htodo)
 
(unlinky)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{stub}}
{{stub}}


This page is part of an attempt to make progress on a [[to-do]] microformat (or properties for an existing microformat like [[h-entry]]) per the microformats [[process]].
This page is part of an attempt to make progress on a "to-do" microformat (or properties for an existing microformat like [[h-entry]]) per the microformats [[process]].


== Reuse VTODO properties ==
== Reuse VTODO properties ==
Line 30: Line 30:


== See Also ==
== See Also ==
* [[to-do]]
* [[to-do-format]]
* [[to-do-examples]]
* [[to-do-examples]]
* [[to-do-formats]]
* [[to-do-formats]]

Latest revision as of 22:52, 14 December 2021

This article is a stub. You can help the microformats.org wiki by expanding it.

This page is part of an attempt to make progress on a "to-do" microformat (or properties for an existing microformat like h-entry) per the microformats process.

Reuse VTODO properties

Background: to-do-formats#VTODO

As the VTODO data types for completed and due are the same as, e.g., dtstart, then the usage should be the same. For example,

<abbr class="due" title="2007-01-01T13:10:05.0Z">January 1, 2007</abbr>

As for percent, the contents of span with class "percent" will do, I think. If there is a "%" in the body, it can be ignored. The numerical part is assumed to be from 0-100. For example,

<span class="percent">50%</span>

and

<span class="percent">50</span> percent

are equivalent.

Here is a full example,

<div class="vtodo">
 <span class="summary">Create a spec for hToDo</span>
 <span class="status">first draft</span>
 Initiated <abbr class="dtstart" title="2006-05-12">May 12, 2006</abbr>
</div>


See Also