diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f7718be..0ea2d3a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## [0.0.10] - 2019-09-17 + +- Updated the logic to remove quotes from front matter property values + +## [0.0.9] - 2019-09-17 + +- Added setting to specify if you want to enable/disable array indents in the front matter of your article +- Remove quotes on date strings + +## [0.0.8] - 2019-09-04 + +- Added command to generate a clean article slug + ## [0.0.7] - 2019-08-28 - Added command to remap tags or categories in all posts: `Front Matter: Remap tag/category in all articles` diff --git a/README.md b/README.md index bc18a29a..51530e8c 100644 --- a/README.md +++ b/README.md @@ -65,12 +65,27 @@ The tags and categories are stored in the project VSCode user settings. You can } ``` -## Settings +## Additional extension 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`. + - Specify if arrays in front matter are indented. Default: `true`. If you do not want to indent the array values, you can update it with the following setting change: + +```json +{ + "frontMatter.taxonomy.indentArrays": false +} +``` + +- `frontMatter.taxonomy.noPropertyValueQuotes` + - Specify the property names of which you want to remove the quotes in the output value. **Warning**: only use this when you know what you are doing. If you want to for instance remove the quotes from the date property, you can add the following: + +```json +{ + "frontMatter.taxonomy.noPropertyValueQuotes": ["date"] +} +``` ## Usage