I know how to change the basic appearance ot tiddlers tagged "person": colors, font size etc. You have to add in a tiddler with the "$:/tags/Stylesheet" tag something like this:
.tc-tagged-person {
background-color: #fff5e6;
border: 0.4px solid brown;
}
This change the colors of all tiddlers tagged with "person".
I know the basic starting of Tiddlywiki:
1. The browser opens the wiki.html file
2. It starts the javascript code.
3. It prepares all basic tiddlers.
4. This basic code and tiddlers draw the wiki content based in the $:/core/ui/PageTemplate tiddler.
5. This page template tiddler has all open tiddlers in the list field of the tiddler $:/StoryList
6. At the end, all this tiddlers are drawn based in the tiddler template: $:/core/ui/ViewTemplate
I tried to change the ViewTemplate without any success.
¿Does anybody know how to draw different fields depending on the tag of the tiddler?
Thanks!!