From 636c7e9ee7711edcc7ea77251e696767e84c6c5b Mon Sep 17 00:00:00 2001 From: Joscha Date: Thu, 28 Oct 2021 00:10:14 +0000 Subject: [PATCH] Add readme --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..55be093 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# today + +## Goal 1 + +- Support simple dates and optional times +- Support tasks, notes and birthdays + +``` +TASK Task without date +DONE (2021-10-27 00:50) + +TASK Another simple task +DONE + +TASK Another task, this time with date +DATE 2021-10-26 +DONE 2021-10-26 (2021-10-27 00:52) + +NOTE Maybe an appointment +DATE 2021-12-07 16:00 + Here are some notes regarding the appointment + Notes can be multiple lines long + + Including empty lines (not even whitespace) in-between + As long as the text stays indented, it's still part of it + +BIRTHDAY John Doe () +DATE 1987-05-12 + +BIRTHDAY Jane Doe +DATE ?-08-22 +DONE 2021-08-22 (2021-08-22 10:23) +```