[tw5] Re: Specifying the Type attribute for a list

2019-03-17 Thread Mohammad
Added to TW-Scripts. On Sunday, March 17, 2019 at 6:33:20 PM UTC+3:30, PMario wrote: > > Hi, > > If you want to set things globally just create a new stylesheet tiddler > with this content > > ol li { list-style-type:upper-alpha; } > ol li li { list-style-type:lower-alpha; } > ol li li li { lis

[tw5] Re: Specifying the Type attribute for a list

2019-03-17 Thread PMario
Hi, If you want to set things globally just create a new stylesheet tiddler with this content ol li { list-style-type:upper-alpha; } ol li li { list-style-type:lower-alpha; } ol li li li { list-style-type:upper-roman; } Using with ordered lists # test ## asdf ### test No extra chars neede

[tw5] Re: Specifying the Type attribute for a list

2019-03-16 Thread passingby
Its quite handy and short. I definitely use it. Thank you! On Saturday, March 16, 2019 at 4:17:32 AM UTC-7, S. S. wrote: > > passingby, > > A little convoluted, but this works: > > > .u { list-style-type:upper-alpha; } > .l { list-style-type:lower-alpha; } > .r { list-style-type:upper-roman; } >

[tw5] Re: Specifying the Type attribute for a list

2019-03-16 Thread S. S.
passingby, A little convoluted, but this works: .u { list-style-type:upper-alpha; } .l { list-style-type:lower-alpha; } .r { list-style-type:upper-roman; } .n { list-style-type: none; margin: 0; padding: 0; } *.u How **.l about ***.r that! .n Your ***.r fancy **.l list *.u works Be

[tw5] Re: Specifying the Type attribute for a list

2019-03-15 Thread passingby
Hello Mervin, In my use case the lists are just one or two liners items, they do not deserve to go into separate tiddlers of their own. But your use of html tag and list widget is surely useful in other cases. Thank you On Friday, March 15, 2019 at 9:31:55 AM UTC-7, mervin mecklenburg wrote: >

[tw5] Re: Specifying the Type attribute for a list

2019-03-15 Thread 'mervin mecklenburg' via TiddlyWiki
If I understand the question, you can also try this. The Type attribute for HTML can be used with the $list widget as follows: <$list filter="[tag{!!title}!has[stop]]"> <$transclude tiddler={{!!title}} mode="block" /> Also, the list widget can be nested to insert sublists. For example, I use

[tw5] Re: Specifying the Type attribute for a list

2019-03-14 Thread passingby
On Wednesday, March 13, 2019 at 9:10:06 PM UTC-7, S. S. wrote: > > Search this google group for: > Change bullet list css lower-alpha > > Regards > Thank you S. S. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group

[tw5] Re: Specifying the Type attribute for a list

2019-03-14 Thread passingby
Thank you. This is just as I thought. I only wanted to make sure I am not missing some tiddlywiki shorthand. Right now I am sometimes in a need of starting a list from a mid value. Like (iv) or something and then sublists with 'a' or 'A'. I am using inline html tag like . This is working fine b

[tw5] Re: Specifying the Type attribute for a list

2019-03-13 Thread PMario
On Wednesday, March 13, 2019 at 10:32:48 PM UTC+1, passingby wrote: > > Is the a wiki text way to specify the list item type like '1' 'A' 'a' 'I' > 'i' and their start attribute ? or do we have to define and use custom css > classes? > CSS classes. see: https://developer.mozilla.org/en-US/docs