diff --git a/docs/_includes/nav.md b/docs/_includes/nav.md index 50cd3e7f..8a2c29b7 100644 --- a/docs/_includes/nav.md +++ b/docs/_includes/nav.md @@ -13,9 +13,8 @@ - Configuration - [Creating Config Files]({{ site.baseurl }}{% link configuration/creating-config.md %}) - [SysOp Setup]({{ site.baseurl }}{% link configuration/sysop-setup.md %}) - - [Editing HJSON]({{ site.baseurl }}{% link configuration/editing-hjson.md %}) - [System Configuration]({{ site.baseurl }}{% link configuration/config-hjson.md %}) - - [HJSON General]({{ site.baseurl }}{% link configuration/hjson.md %}) + - [HJSON Config Files]({{ site.baseurl }}{% link configuration/hjson.md %}) - [Menus]({{ site.baseurl }}{% link configuration/menu-hjson.md %}) - [Prompts]({{ site.baseurl }}{% link configuration/prompt-hjson.md %}) - [Directory Structure]({{ site.baseurl }}{% link configuration/directory-structure.md %}) diff --git a/docs/configuration/editing-hjson.md b/docs/configuration/editing-hjson.md deleted file mode 100644 index 0a752178..00000000 --- a/docs/configuration/editing-hjson.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: page -title: Editing Hjson ---- -Hjson is a syntax extension to JSON. It's NOT a proposal to replace JSON or to incorporate it into the JSON spec itself. -It's intended to be used like a user interface for humans, to read and edit before passing the JSON data to the machine. - -You can find more info at the [Hjson.org website](http://hjson.org/). - -## Editor Plugins -### Visual Studio Code - -[Visual Studio Code](https://code.visualstudio.com/) has a nice Hjson extension that can be installed from -within the IDE. It provides syntax highlighting to make it clear when you've made a syntax mistake within -a config file. - -### Notepad++ - -[Notepad++](https://notepad-plus-plus.org) has an Hjson plugin that provides syntax highlighting and other -usual text editor features. The plugin can be found [here](https://github.com/laktak/npp-hjson). \ No newline at end of file diff --git a/docs/configuration/hjson.md b/docs/configuration/hjson.md index cc8fa26d..74b6eb01 100644 --- a/docs/configuration/hjson.md +++ b/docs/configuration/hjson.md @@ -1,6 +1,6 @@ --- layout: page -title: HJSON General Information +title: HJSON Config Files --- ## JSON for Humans! HJSON is the configuration file format used by ENiGMA½ for [System Configuration](config-hjson.md), [Menus](menu-hjson.md), [Prompts](prompt-hjson.md), etc. [HJSON](https://hjson.org/) is is [JSON](https://json.org/) for humans! @@ -32,9 +32,9 @@ Note that `someSection` is the configuration *section* (or *block*) and `foo: ba HJSON is a text file format, and ENiGMA½ configuration files **should always be saved as UTF-8**. It is **highly** recommended to use a text editor that has HJSON support. A few (but not all!) examples include: -* Sublime Text 3 via the `sublime-hjson` package. -* Visual Studio code via the `vscode-hjson` plugin. -* Notepad++ via the `npp-hjson` plugin. +* [Sublime Text](https://www.sublimetext.com/) via the `sublime-hjson` package. +* [Visual Studio Code](https://code.visualstudio.com/) via the `vscode-hjson` plugin. +* [Notepad++](https://notepad-plus-plus.org) via the `npp-hjson` plugin. See https://hjson.org/users.html for more more editors & plugins.