diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 600659a..bcd8dfd 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -44,8 +44,28 @@ "group": "none", "problemMatcher": [] }, + { + "label": "Clean (Windows)", + "type": "shell", + "command": "bundle", + "args": [ + "exec", + "jekyll", + "clean", + "--destination", + "build" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + }, { "label": "Build (Windows)", + "dependsOn": [ + "Clean (Windows)" + ], "type": "shell", "command": "bundle", "args": [ @@ -64,6 +84,9 @@ }, { "label": "Build (WSL)", + "dependsOn": [ + "Clean (Windows)" + ], "type": "process", "options": { "cwd": "build" diff --git a/workspace.code-workspace b/workspace.code-workspace index 0b0b03f..9c4cde7 100644 --- a/workspace.code-workspace +++ b/workspace.code-workspace @@ -17,6 +17,12 @@ "editor.formatOnSave": false, "editor.insertSpaces": false, "editor.autoIndent": "keep" - } + }, + "html.format.contentUnformatted": [ + "pre", + "code", + "samp" + ], + "html.format.wrapLineLength": 0 } }