From 6fc2fcf5d20d796fafae88067a360a8e5c38a39c Mon Sep 17 00:00:00 2001 From: AngelicosPhosphoros Date: Fri, 2 Dec 2022 19:20:00 +0400 Subject: [PATCH] Suggest to use json validator for modders. (#1623) * Suggest to use json validator for modders. * Update doc/MODDING.md Co-authored-by: Olanti --- doc/MODDING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/MODDING.md b/doc/MODDING.md index df1052d14f33..e1c7c86c2ed6 100644 --- a/doc/MODDING.md +++ b/doc/MODDING.md @@ -217,6 +217,8 @@ In game, that appears like this: Many editors have features that let you track `{ [` and `] }` to see if they're balanced (ie, have a matching opposite); These editors will also respect escaped characters properly. [Notepad++](https://notepad-plus-plus.org/) is a popular, free editor on Windows that contains this feature. On Linux, there are a plethora of options, and you probably already have a preferred one 🙂 +You may also want to use some online or offline JSON validator, e.g. https://dev.narc.ro/cataclysm/format.html , or `json_formatter` bundled with every release of the game (just drag-and-drop the .json file on it). + ## Addendum ### No Zombie Revival