nea / MarkdownViewerPlusPlus

A Notepad++ Plugin to view a Markdown file rendered on-the-fly
MIT License
1.17k stars 143 forks source link

Changing the "bullet" on Nested List #58

Closed settonfarms closed 6 years ago

settonfarms commented 6 years ago

Hello,

Thank you for making the plugin.

When I have nested list this indented looks like this. I do not like the spade icon used. Is there a way to change this? Also I've noticed other markup views, dilllinger, markdownlive, do not use them.

example image

nea commented 6 years ago

Hey @settonfarms

Please checkout #29 to get an idea how to change the styling via custom CSS.

My very simple CSS looks like this:

ul li { list-style-type: disc; }

ul > li > ul > li { list-style-type: circle; }

Best