VSCode Markdown Formatter Settings
Table of Contents
- Install extension (markdown-all-in-one, markdownlint, etc.)
- Open VSCode settings.json
- File > Preferences > Settings or
Ctrl + ,
then click the ``Open Setting (JSON)` icon on the top right corner - Or open
%APPDATA%\Code\User\settings.json
- File > Preferences > Settings or
- Add the following settings to the settings.json file:
{
"[markdown]": {
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
},
"editor.formatOnPaste": true, // optional
"editor.formatOnSave": true, // optional
"editor.formatOnType": true // optional
}