nea / MarkdownViewerPlusPlus

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

PDF font for nested lists #46

Closed jiggunjer closed 7 years ago

jiggunjer commented 7 years ago

When I export as PDF my lists have odd glyphs:

HTML version viewed in chrome looks much better. So is there a fix for the PDF version? I'm on Windows 8.1.

nea commented 7 years ago

Hi @jiggunjer

You can configure the bullet styles via the HTML CSS options in the configuration.

For example, you could add the custom CSS ul li { list-style-type: disc; } ul > li > ul > li { list-style-type: circle; }

Cheers