diff --git a/building/tracks/docs.md b/building/tracks/docs.md index 4f994e12..f78d723f 100644 --- a/building/tracks/docs.md +++ b/building/tracks/docs.md @@ -368,3 +368,22 @@ Check [this page](https://exercism.org/docs/tracks/fsharp/tests) to see what thi ] } ``` + +## Adding documents + +It is possible to add additional documents should you so desire. +To do so, you need to do two things: + +1. Create the document within the `docs` directory (e.g. `docs/LIBRARIES.md`) +2. Add an entry to the `docs/config.json` file for the new document. + For example: + +```json +{ + "uuid": "6268fd29-55e2-44e6-afc2-f86671fe799f", + "slug": "libraries", + "path": "docs/LIBRARIES.md", + "title": "Supported libraries", + "blurb": "List of the supported libraries" +} +```