From 055b8d8aa5a7ae812d9e7fab050c7432b7f4ed36 Mon Sep 17 00:00:00 2001 From: Elio Struyf Date: Tue, 17 Sep 2019 15:55:47 +0200 Subject: [PATCH] Added information for indent arrays setting --- README.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bf2279d4..bc18a29a 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,13 @@ The tags and categories are stored in the project VSCode user settings. You can } ``` +## Settings + +The extension has more settings which allow you to further configure it to your needs. Here is a list of settings which you can set: + +- `frontMatter.taxonomy.indentArrays` + - Specify if arrays in front matter are indented. Default: `true`. + ## Usage - Start by opening the command prompt: diff --git a/package.json b/package.json index 1c347e0c..d35c3b9f 100644 --- a/package.json +++ b/package.json @@ -75,7 +75,7 @@ "frontMatter.taxonomy.indentArrays": { "type": "boolean", "default": true, - "markdownDescription": "Specify if arrays in front matter are indented. Default is true." + "markdownDescription": "Specify if arrays in front matter are indented. Default: true." } } },