Nice!
The toc macro is really getting a face-lift, and turning into something epic
Will we be able to apply css to it? Something along the lines of :hover {display:inline} and not hover is hidden?
Edit: I meant to come back to this but unfortunately things got quite hectic, but to follow up with my question, I poked around a bit and created a stylesheet that achieves what I was curious about!
I will say that giving the new-child buttons a css class would be a bit more practical but all things considered there is no issue with how it is set up, and I’m sure it is moreso a temporary setting!
But, that being said, here is the CSS needed to show the buttons only when the tiddlers are hover overed, to avoid any sort of visual clutter when navigating the TOCs ^^
li.toc-item .tc-tiddlylink.tc-tiddlylink-resolves .tc-small-gap-left button {
display: none;
}
li.toc-item .tc-tiddlylink.tc-tiddlylink-resolves:hover .tc-small-gap-left button {
display: inline-block;
}
And, just want to say again that I think these changes are an amazing improvement to an otherwise already vital part of TiddlyWiki.
Edit 2:
Having a bit of a difficult time trying to import the plugin to a blank tiddler for testing. Unfortunately I am unable to get it working correctly outside of the linked v5.3.6 link. Is there a dependency on features found in the pre-release?
Just asking to see if there is a way I can use it for my wiki, as I really like how the TOC in the linked TW has turned out.