nea / MarkdownViewerPlusPlus

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

Borders around tables? #146

Closed JC3 closed 2 years ago

JC3 commented 2 years ago

Hi,

Is there a way to make the viewer display borders around Markdown tables?

Thanks!

patricktokeeffe commented 2 years ago

Yes. Plugins > Markdownviewer++ > Options > HTML >

table {
    border-collapse: collapse;
}
tr, td, th {
    border: 1px solid #AAA;
    padding: 4px;
}
JC3 commented 2 years ago

Sweet, thanks!!

patricktokeeffe commented 2 years ago

Glad I could help! (Please remember to close if this is resolved)