Updated changelog + readme

This commit is contained in:
Elio Struyf
2019-09-17 16:53:37 +02:00
parent 6f5e5e68a8
commit 82ae1dadcf
2 changed files with 30 additions and 2 deletions
+13
View File
@@ -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`
+17 -2
View File
@@ -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