[tw] Re: I want to use [+/-] in list instead of dot

2014-10-02 Thread Eucaly J
TableOfContentsMacro Selective Expandable [1] should be very similar to what you expected, while you need change > {{$:/core/images/right-arrow}}to + v {{$:/core/images/down-arrow}} to - which could be found in macro definition [2] [1] http://tiddlywiki.com/#TableOfContentsMacro%20Select

[tw] Re: I want to use [+/-] in list instead of dot

2014-10-02 Thread Stephan Hradek
So do it then. Here is something to get you started: ul li { list-style-type: none; } ul > li:before { content: "+"; } ul > li >ul > li:before { content: "-"; } Put it in a tiddler tagged "$:/tags/Stylesheet". Note: This is just a starting point. You should read about CSS and list-style.