[Kara] Timestamp for checklist entries
@Mohammad I’m currently trying out Kara and I appreciate it as much as the other plugins you’ve created .
I like the idea of interstitial journaling behind Kara and I’m trying to get closer to the roam experience shown in this screenshot interstitial-journaling-example.png
Checklists and interstitial journal items cannot be merged,
but they can exist parallel in a journal tiddler.
I would like to have a timestamp for each checklist entry similar to the interstitial items.
Question: How to add a timestamp to each checklist entry?
Interstitial entries with timestamps do work, but in transfering its code to checklist entries, I run into a
Syntax problem:
add-items-interstitial⇗
\define kara-add-item-action()
<$let
note-time=<<now format:'0hh:0mm'>>
item = {{{ [<tempTid>get[text]] }}}
newItem = {{{ [[*]] [<note-time>addprefix['']addsuffix['']] [<item>] +[join[ ]]}}}
newblock = {{{ [<dblock>addsuffix<newItem>addsuffix<lbr>] }}}
>
add-items-checklist⇗
\define kara-add-item-action()
<$let
item = {{{ [<tempTid>get[text]] }}}
newItem = {{{ [<item>addprefix[ ]addprefix<undoneMark>] }}}
newblock = {{{ [<dblock>addprefix<newItem>addprefix<lbr>] }}}
>
I’ve tried to add note-time
to the add-items-checklist-tiddler
<$let
note-time=<<now format:'0hh:0mm'>>
...
newItem = {{{ [[<note-time>addprefix['']addsuffix['']] <item>addprefix[ ]addprefix<undoneMark>] }}}
...
Unfortunately, this does not work and my question remains: