如何关闭 VS Code 自动格式化 Markdown 文件?
How to turn off VS Code auto-formatting for Markdown files?
在 VS Code 中保存时,是否有办法将我的 Readme.md 文件从自动格式化中排除?我仍然希望为其他文件类型自动格式化。
转到 settings.json 并粘贴:
"[markdown]": {
"editor.formatOnSave": false,
}
Here is the link, where you find this and other configurations
在 VS Code 中保存时,是否有办法将我的 Readme.md 文件从自动格式化中排除?我仍然希望为其他文件类型自动格式化。
转到 settings.json 并粘贴:
"[markdown]": {
"editor.formatOnSave": false,
}
Here is the link, where you find this and other configurations