On Feb 12, 3:28 pm, Mjh <[email protected]> wrote:
> I understand how to set up ordered lists in StyleSheet. But can I use
> a numeric ordered list in one tiddler and an alpha ordered list in
> another tiddler?

Define TWO separate custom CSS classes in the StyleSheet, ".numlist"
and ".alphalist", using something like the following:

.numlist ol { list-style-type: decimal }
.numlist ol ol { list-style-type: decimal }
.numlist ol ol ol { list-style-type: decimal }
etc.

.alphalist ol { list-style-type: lower-alpha }
.alphalist ol ol { list-style-type: lower-alpha }
.alphalist ol ol ol { list-style-type: lower-alpha }
etc.

Then, in your tiddler content, you can write:

{{numlist{
#foo
#bar
#baz
}}}

or

{{alphalist{
#foo
#bar
#baz
}}}


enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.

Reply via email to