Hi,
There is probably simple solution to this but can't get my head arnound it.
I have a simple ToDo created with guide in TiddlyWiki using list filter and checkbox.
would like to expand my checklist with title (clicable and linkable) and text field.
My list filter looks like this:
<$list filter="[!has[draft.of]tag[task]!tag[done]!sort[created]]">
<$checkbox tag="done">
<$link to={{!!title}}>
<$view field="title"/>
</$link>
<br>
<$view field="text" format="text"/>
</$checkbox>
</$list>
Problem is with the $view field="text" format="text" where i don't get format like in the tiddler but i have everything without formatin (single line)
I would like to have formats from the tiddler in the list like BOLD, strikethrough etc...