Re: [tw] Re: [TW5] Nesting of Items in Ordered Lists

2016-04-30 Thread Scott Simmons (Secret-HQ)
On Saturday, April 30, 2016 at 5:21:01 PM UTC-4, Jeremy Ruston wrote:

> Any reason that styling was deliberately left out of TW5? 
>
> It’s more that it’s the default HTML/CSS styling; TW5 doesn’t generally 
> change defaults unless it’s functionally necessary.
>

Thanks!

I wasn't sure if it was a deliberate choice to make TW more transparent 
(and HTML-"bilingual") or just something that got left behind by mistake. 
 I could've seen it going either way — !  ;)

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/29974528-ccd1-41e1-86e4-e1486ec0e262%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Nesting of Items in Ordered Lists

2016-04-30 Thread Jeremy Ruston
Hi Scott

> Any reason that styling was deliberately left out of TW5?

It’s more that it’s the default HTML/CSS styling; TW5 doesn’t generally change 
defaults unless it’s functionally necessary.

Best wishes

Jeremy

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0F5001C9-FB5C-4CC7-8732-12921CB2BE6E%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Nesting of Items in Ordered Lists

2016-04-30 Thread Scott Simmons (Secret-HQ)
Well, that's gloriously simple.  Thanks, Eric!

Any reason that styling was deliberately left out of TW5?

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9cb0658a-eab1-4993-8e2f-063fc5333225%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Nesting of Items in Ordered Lists

2016-04-29 Thread Eric Shulman
On Friday, April 29, 2016 at 12:05:56 PM UTC-7, Scott Simmons (Secret-HQ) 
wrote:
>
> Hmmm.  Does TW5 no longer support nested ordered lists, like TWC did?
>
> For example, this:
>
> #first item
> ##second item
> ###third item
>
> ... renders in TWC as:
>
> 1. first item
>a. second item
>   i. third item
>
> ... but renders in TW5 as:
>
> 1. first item
> 1. second item
> 1. third item
>
> Is that an unimplemented feature, or did it cause problems with the new 
> core maybe?
>

Nested ordered lists DO work.  The standard HTML default style for OL is to 
use decimal numbers at all levels.

However, in TiddlyWiki Classic, the StyleSheetLayout shadow tiddler defined 
the styles for ordered list this way:

ol {list-style-type:decimal;}
ol ol {list-style-type:lower-alpha;}
ol ol ol {list-style-type:lower-roman;}
ol ol ol ol {list-style-type:decimal;}
ol ol ol ol ol {list-style-type:lower-alpha;}
ol ol ol ol ol ol {list-style-type:lower-roman;}
ol ol ol ol ol ol ol {list-style-type:decimal;}

For TW5, paste the above into a tiddler tagged with $:/tags/Stylesheet, and 
you should then get the bullet styles you expect.

enjoy,
-e


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0defdf3f-e121-4596-b4e6-e5d07262e2e0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.