On Thursday, August 27, 2020 at 10:06:24 AM UTC-7, Millo wrote:
>
> an * leads to bullets while # leads to numbering. However, I want to know 
> if I can do the following via TW:
>
> 1. Some random Question.
>     a. Subsection 1  
>          i. Subsection 1.1
>         ii. Subsection 1.2
>    .......
>

Yes.  Use CSS to style the numbered bullets, like this:

<style>
li {list-style-type: decimal; }
li li {list-style-type: lower-alpha; }
li li li {list-style-type: lower-roman; }
li li li li {list-style-type: circle; }
</style>

# Some random Question
## Subsection 1
## Subsection 2
# Another Random Question
## Subsection 1
### Subsection 1.1
### Subsection 1.2
## Subsection 2
### Subsection 2.1
### Subsection 2.2
# One More Random Question
## Subsection 1
### Subsection 1.1
#### Subsection 1.1.1
##### Subsection 1.1.1

Here's a link to a reference for "list-style-type":
https://www.w3schools.com/cssref/pr_list-style-type.asp

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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c052a86c-f707-4766-be91-d21615593725o%40googlegroups.com.

Reply via email to