You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The plugin systematically adds quotes (") around the value of text fields in the YAML header, which can be problematic when using linter.
For tags, the result is either in the form tags: "tag1, tag2, tag3"
or in the form
tags:
- tag1
- tag2
- tag3
Neither option is valid when using the linter plugin
A "valid" result should be tags: tag1, tag2, tag3
The problem can be the same for other fields such as "date" or "url" that do not necessarily require quotes (which is not the case of the "title" field for example)
Adding a setting to add yes or no quotes or offering a "text without quotes" field type would be a good solution.
The text was updated successfully, but these errors were encountered:
The plugin systematically adds quotes (") around the value of text fields in the YAML header, which can be problematic when using linter.
For tags, the result is either in the form
tags: "tag1, tag2, tag3"
or in the form
Neither option is valid when using the linter plugin
A "valid" result should be
tags: tag1, tag2, tag3
The problem can be the same for other fields such as "date" or "url" that do not necessarily require quotes (which is not the case of the "title" field for example)
Adding a setting to add yes or no quotes or offering a "text without quotes" field type would be a good solution.
The text was updated successfully, but these errors were encountered: