From 01985374d2bf86e2b0d8b16bf22746509a6e750b Mon Sep 17 00:00:00 2001 From: Sebastian Tiedtke Date: Mon, 26 Aug 2024 11:53:25 -0700 Subject: [PATCH] Use JSON encoding --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 69e5836..2b50cdf 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Given you have a markdown file that contains one or several set-up scripts, e.g. As a first step, please install the project dependencies via: - ```sh name=installDeps + ```sh {"name":"installDeps"} npm install ``` @@ -33,7 +33,7 @@ Given you have a markdown file that contains one or several set-up scripts, e.g. To build project files and test the project, run: - ```sh name=build + ```sh {"name":"build"} npm run compile npm run build ``` @@ -42,7 +42,7 @@ Given you have a markdown file that contains one or several set-up scripts, e.g. To run all tests, execute: - ```sh name=tests + ```sh {"name":"tests"} npx eslint npx vitest npx wdio run ./wdio.conf.js