nea / MarkdownViewerPlusPlus

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

feature request: add url to external css #144

Open se4203 opened 2 years ago

se4203 commented 2 years ago

Issue description

Issue: The textbox for custom css truncates long inputs. Instead of making it accept long inputs, I suggest adding an url. The exported html code will then contain something like <link rel="stylesheet" href="https://example.com/resources/css/custom_md.css"> instead of the normal <style>...</style> element.

Environment

hanksmoody commented 2 years ago

Support for referenced css files would also be a nice feature in this context. For example:

@import url("referenced.css"); .header-placeholder { height: 1px; width: 100%; margin-top: 160px; }