I want to generate a todo list on a weekly basis.
The idea is that I type in a tiddler a certain string:
TODO_WK918: Some text

And in some other place:
TODO_WK918.4: Some text 2

Using a plugin to iterate over all tiddlers, I'm able to find all
tiddlers that contain this string and display the title / body of the
tiddler in an automatic way. But this is not what I want.
I want to generate a list that contains one line per todo entry. The
line should contain the "Some text" part of the TODO, i.e.:
TODO_WK918.3: Some text
TODO_WK918.4: Some text 2

So I basically need to know how to cut a part of the tiddler"s body
and display this in a list.
Can somebody help me with this?

Thanks

This is how I loop over all tiddlers:
<<forEachTiddler
where ' tiddler.text.contains("WK919") && tiddler.tags.contains
("_task")'
write 'tiddler.text+"\n"'
>>


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to