KyleKing/recipes

Fix markdown spacing in VScode to 4

KyleKing opened this issue · 1 comments

MKDocs uses 4 spaces, but mdlint (?) throws an error and expects all indent to be 2

Fixed, set in JSON VScode:

{
    "[markdown]": {
        "editor.insertSpaces": true,
        "editor.tabSize": 4,
        "editor.defaultFormatter": "yzhang.markdown-all-in-one"
    }
}