qjebbs / vscode-markdown-extended

Extended syntaxes to built-in markdown & What you see is what you get exporter.
MIT License
127 stars 25 forks source link

Markdown-it settings in vscode #96

Open v217 opened 3 years ago

v217 commented 3 years ago

Thank you for your extension. Not sure if this enhancement has already been requested in an issue.

E.g if you want to enable headerless tables you have to modify line:32 in the file

.vscode/extensions/jebbs.markdown-extended-1.0.18/out/src/plugin/plugin.js

and add enableHeadless: true. It would be more comfortable to modify the individual settings of the mardown-it plugins in vscode.

Doesn't work!

v217 commented 3 years ago

I found this work-around:

<style>
    th {
        display: none;
    }
</style>

https://stackoverflow.com/a/58152877