File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 (string " # " (plan :title )))
1010
1111(defn- checkbox [task ]
12- (if (= (task :state ) :checked ) " [X]" " [ ]" ))
12+ (case (task :state )
13+ :open " [ ]"
14+ :checked " [X]"
15+ :obsolete " [~]" ))
1316
1417(defn- serialize-event-title [event ]
1518 (string " - " (event :title )))
Original file line number Diff line number Diff line change 1717 (day/build-day (d/date 2020 8 1 )
1818 @[(event/build-event " Talked to Mike" @[" - He has a new car" ])]
1919 @[(task/build-task " Develop photos" :open )
20+ (task/build-task " Fix the lamp" :obsolete )
2021 (task/build-task " Pay bills" :checked @[" - Electricity" " - Water" ])
2122 (task/build-missed-task " Organize photos" (d/date 2020 7 20 ))])
2223 (day/build-day (d/date 2020 7 31 )
4041 - Talked to Mike
4142 - He has a new car
4243 - [ ] Develop photos
44+ - [~] Fix the lamp
4345 - [X] Pay bills
4446 - Electricity
4547 - Water
You can’t perform that action at this time.
0 commit comments