Closed cvogt729 closed 1 month ago
github switched to using more css variables for spacing and padding including that one for paragraphs. The version of generate-github-markdown-css
this now uses in 2.1.0
accounts for and relies on those variables. I don't know how Markdown All In One is generating the html and including CSS but it's missing those somehow.
Probably worth opening an issue on their side given it's dependent on how they handle the html export of css. Might be able to do something to help it on this side but probably need guidance from them since this extension is working correctly in the preview panel.
Yes I think this will need to be fixed by markdown all in one since it sounds specific to their extension's functionality
I use the following Markdown extensions in vscode:
My settings relevant to Markdown are:
I use the Markdown All in One extension primarily to print my Markdown documents to HTML. In version 2.0.4 of Markdown Preview Github Styling, all my documents print to HTML as expected as shown in the screenshot below.
However, version 2.1.0 of Markdown Preview Github Styling seems to have broken this. The same sample document now prints as:
The raw Markdown of this sample document is:
For now, my solution is to rollback the extension to version 2.0.4. I looked into the generated HTML, and the correct HTML has some CSS saying
margin-bottom:16px
on relevant pieces of the document, while the incorrect HTML does not include this.I know interactions between extensions are not necessarily easy to predict, but I was hoping someone could shed some light on this issue. Thank you.