From 8ed59da613b6989fec77cc2b5b4d7ef6735becd4 Mon Sep 17 00:00:00 2001 From: iiPython Date: Sat, 9 Mar 2024 18:24:22 -0600 Subject: [PATCH] [docs] Final fixup for the docs (for now) --- README.md | 2 +- docs/README.md | 2 +- docs/documents/configuration.md | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fa305c3..1fdc05c 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ Any x++ files should always end in the `.xpp` extension. You can edit the main entry file by editing the configuration in `.xconfig`. It is a JSON-like file that contains all the configurations for your x++ project. Within it, you should see: -```xconfig +```json { "main": "main.xpp" } diff --git a/docs/README.md b/docs/README.md index 688e170..a9b8132 100644 --- a/docs/README.md +++ b/docs/README.md @@ -99,7 +99,7 @@ Any x++ files should always end in the `.xpp` extension. You can edit the main entry file by editing the configuration in `.xconfig`. It is a JSON-like file that contains all the configurations for your x++ project. Within it, you should see: -```xconfig +```json { "main": "main.xpp" } diff --git a/docs/documents/configuration.md b/docs/documents/configuration.md index be2cf9e..076f740 100644 --- a/docs/documents/configuration.md +++ b/docs/documents/configuration.md @@ -34,7 +34,7 @@ The configuration file defines what the project would do on execution. It is always placed in the `.xconfig` file and should be written as if it is within a `*.json` file. If one is not found in the project, the default configuration is used internally instead: -```xconfig +```json { "main": "main.xpp" } @@ -42,7 +42,7 @@ The configuration file defines what the project would do on execution. It is alw The configuration file can also contain non-essential information, such as the author, version, or description of your project: -```xconfig +```json { "author": "my-name", "contributors": [ @@ -61,7 +61,7 @@ The configuration file can also contain non-essential information, such as the a ### Main -```xconfig +```json { "main": }