Lets say I have a list like this:
- Lorem
- Ipsum
<
Is there a way to get this letter for any given list item?
Yes. You can read the list-style-type
and generate what characters are showing for each style type. Which character is shown for a specific item number and style type could vary across browsers though.
Or, maybe there is way to extract markers from style?
No. (At least not currently)
Some useful stuff for writing a generator:
Also, many of the list-styles are uppercase versions of other list styles. Could be good to know then that myString.toUpperCase()
works on unicode characters as well. :)