From f12a1c1ef5849038adef2dff1c6776b707cbdd25 Mon Sep 17 00:00:00 2001 From: Wout Schellaert Date: Sat, 15 Dec 2018 14:48:37 +0100 Subject: [PATCH] Add JSON validation instructions to README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 51f8d85..a4b74c5 100644 --- a/README.md +++ b/README.md @@ -11,3 +11,5 @@ You can easily run the site locally by spawning a simple static file server in t ``` (cd src/; python3 -m http.server) ``` + +You can also validate the JSON with `(cd src/; python -m json.tool data.json > /dev/null)`. If there are no errors, there will be no output.