Open ShahriarKh opened 1 year ago
What do you think about adding a settings page, where users can define custom list-style-types? Because list style type not only supports pre-defined values, but also unicodes, custom strings, and symbols.
list-style-type
Currently, it can be done simply with a custom css snippet (https://developer.mozilla.org/en-US/docs/Web/CSS/@counter-style):
@counter-style thumbs { system: cyclic; symbols: "\1F44D"; suffix: " "; } /* ul { list-style: thumbs; } */
and in the note:
1. {thumbs} Yes 2. It's 3. Great!
which results in:
Hey, I probably won't implement this myself, but I'd take a PR.
What do you think about adding a settings page, where users can define custom
list-style-type
s? Because list style type not only supports pre-defined values, but also unicodes, custom strings, and symbols.Currently, it can be done simply with a custom css snippet (https://developer.mozilla.org/en-US/docs/Web/CSS/@counter-style):
and in the note:
which results in: