I'm developing a to do list app, and I want each task to be editable on one line (because as a developer I don't own a mouse :P ).<p>I was wondering if there was an established standard for single-line calendar events?<p>I know Ical exists, but i don't want to have to create an entire ical entry when i want to flag a task to happen in a day.<p>Currently I have a current system like this:<p>- Listen to music \{date: +1m} - in one minute<p>- Code new feature \{date: +1d} - in one day<p>- Wake up \{date: 9:00am} - next 9:00am<p>- Go for a run \{date: (9:00am)} - every 9:00am<p>Does anyone know of any standards like this?
If it was me, I would consider writing code that translates a simpler format into iCal.<p>Then, the data...which is what is important...can be presented in other people's software.<p>good luck.