-
Notifications
You must be signed in to change notification settings - Fork 102
Description
When creating a recipe, the UI clearly indicates that the list of keywords are "comma-separated". However, when actually entering keywords, they are clearly parsed based on whitespace (at least, spaces) and commas, instead of just commas.
This makes using keywords like "Instant Pot" impossible, as it is parsed into "instant" and "pot".
I feel that keyword processing should be minimal: break up the list on commas, then trim excess whitespace (trim leading and trailing whitespace and maybe also collapse whitespace inside the tag to just one space). As for normalizing to lower-case, I have no opinion, but I imagine it's more useful than not, assuming it isn't required by the schema?
Or are there plans to integrate into NextCloud's native tagging mechanism? Is that even possible given the Schema.org framework?