vscode-markdown-extended icon indicating copy to clipboard operation
vscode-markdown-extended copied to clipboard

Markdown-it settings in vscode

Open v217 opened this issue 4 years ago • 1 comments

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 avatar Jan 26 '21 18:01 v217

I found this work-around:

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

https://stackoverflow.com/a/58152877

v217 avatar Jan 26 '21 19:01 v217