A to-do list displayer using XML.
- Author: Ethan Kletschke
- Version:
1.0.0
- Environment: Ubuntu (WSL)
- Previously Windows 11
- Open
To-Do.xml
in MS Edge - Reload the tab in Internet Explorer mode.
- The
value
attribute of the<done>
element is entirely optional if the value is"Yes"
, and is recommended to be omitted in this case. Otherwise, thevalue
attribute must be added to indicate the option is not done yet. For example:<!-- Implicitly yes --> <done /> <!-- Explicitly yes (not recommended) --> <done value="Yes" /> <!-- Explicitly no --> <done value="No" />
- The
<extra-note>
element is entirely optional. The displayed to-do list will show that no extra note was added.