vscode-markdown-extended
vscode-markdown-extended copied to clipboard
Markdown-it settings in vscode
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!
I found this work-around:
<style>
th {
display: none;
}
</style>
https://stackoverflow.com/a/58152877