diff --git a/_sources/setup-tools.rst.txt b/_sources/setup-tools.rst.txt index 365ce7d..33691e4 100644 --- a/_sources/setup-tools.rst.txt +++ b/_sources/setup-tools.rst.txt @@ -106,7 +106,7 @@ after saving files from your project. ``Tasks: Configure task`` or open ``.vscode/tasks.json``) using the following snippet (replace the name and directory as needed): -.. code:: +.. code:: javascript // .vscode/tasks.json { @@ -130,7 +130,7 @@ after saving files from your project. 3. Add the following to your Visual Studio Code settings (``.vscode/settings.json``) -.. code:: +.. code:: javascript // .vscode/settings.json { diff --git a/setup-tools.html b/setup-tools.html index fa72518..b80b949 100644 --- a/setup-tools.html +++ b/setup-tools.html @@ -367,22 +367,22 @@ after saving files from your project.

Tasks: Configure task or open .vscode/tasks.json) using the following snippet (replace the name and directory as needed):

-
// .vscode/tasks.json
-{
-    // See https://go.microsoft.com/fwlink/?LinkId=733558
-    // for the documentation about the tasks.json format
-    "version": "2.0.0",
-    "tasks": [
-        {
-            "label": "reload plugin",
-            "type": "shell",
-            "command": "$MO2DIR/ModOrganizer.exe",
-            "args": [
-                "reload-plugin", "My Plugin"
-            ]
-        }
-    ]
-}
+
// .vscode/tasks.json
+{
+    // See https://go.microsoft.com/fwlink/?LinkId=733558
+    // for the documentation about the tasks.json format
+    "version": "2.0.0",
+    "tasks": [
+        {
+            "label": "reload plugin",
+            "type": "shell",
+            "command": "$MO2DIR/ModOrganizer.exe",
+            "args": [
+                "reload-plugin", "My Plugin"
+            ]
+        }
+    ]
+}
 
    @@ -390,11 +390,11 @@ snippet (replace the name and directory as needed):

    extension from Visual Studio Code marketplace.

  1. Add the following to your Visual Studio Code settings (.vscode/settings.json)

-
// .vscode/settings.json
+
// .vscode/settings.json
 {
-    "triggerTaskOnSave.on": true,
-    "triggerTaskOnSave.tasks": {
-        "reload plugin": [
+    "triggerTaskOnSave.on": true,
+    "triggerTaskOnSave.tasks": {
+        "reload plugin": [
             "*.py"
         ]
     }