Hi [email protected]

> 1. When I add a new master topic, I see the title, and then inside the
> tiddler I see the tittle again as the first note. How can I get rid of
> this repeat information?

You can simply hide the original title of the tiddler by deleting
"<span class='title' macro='view title'></span>"
from the [[TopicsViewTemplate]] tiddler.

> 2. Can I fix the order of the topics in the index to the left?  I want
> at least to be able to fix the order of the Master Topics.  Right now,
> when I edit stuff in a topic the master topic it moves to the bottom

If you look at the [[MainMenu]] tiddler you'll see a foreachtiddler
macro:
"<<forEachTiddler where 'tiddler.tags.contains("Topics")' write
 '"<<tiddler TopicsTemplate1 with: [["+tiddler.title+"]]$))"'>>"
Its the ForEachTiddlerPlugin which delivers the macro.

You can tweak the output of the macro to your own liking -
see: http://tiddlywiki.abego-software.de/#WhereClauseExamples
If you want to sort by modified, you simply write:
"<<forEachTiddler where 'tiddler.tags.contains("Topics")' sortBy
 'tiddler.modified'
 descending
write
 '"<<tiddler TopicsTemplate1 with: [["+tiddler.title+"]]$))"'>>"

Cheers Måns Mårtensson



> 3. Related to the above, can I manually control the order in the rest
> of the tree and lists in the master tiddlers?  Right now, I think
> Notes are listed alphabetically
>
> Thanks

-- 
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