vscode-markdown-editor
vscode-markdown-editor copied to clipboard
CSS setting specification is ignored (at least for `font-face`)
I specified the following, which does not apply to the editor:
"markdown-editor.customCss": "font-family: Tahoma !important;"
After spending some time looking through the settings in https://github.com/zaaack/vscode-markdown-editor/blob/master/media/dist/main.css and performing some trial-and-error changes, I finally found the setting to change the font face.
"markdown-editor.customCss": ".vditor .vditor-reset{font-family:Tahoma!important}",
After adding/updating the setting, remember to reload the Markdown Editor to see the result.
The setting was originally
.vditor .vditor-reset{font-family:var(--vscode-editor-font-family)!important}