From 0c5a25157db143f773dd282c9f53e0e24465e63e Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Sun, 18 Apr 2021 08:22:38 +0100 Subject: [PATCH] build(gitpod): recommend mermaid markdown plugin This allows to preview the mermaid chart in docs while writing it in VSCode. --- .gitpod.yml | 1 + .vscode/extensions.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index 817eeeb6a..203e5c7d9 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,5 +1,6 @@ vscode: extensions: + - bpruitt-goddard.mermaid-markdown-syntax-highlighting - editorconfig.editorconfig - esbenp.prettier-vscode - ms-python.python diff --git a/.vscode/extensions.json b/.vscode/extensions.json index e3f98f806..c1746b7b8 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -2,6 +2,7 @@ "recommendations": [ "esbenp.prettier-vscode", "ms-python.python", - "editorconfig.editorconfig" + "editorconfig.editorconfig", + "bpruitt-goddard.mermaid-markdown-syntax-highlighting" ] }