config: don't let tags start with '-'
This breaks search engine and negating tags.
This commit is contained in:
parent
731c0442e9
commit
ba6c9645fb
|
@ -36,7 +36,7 @@ limits:
|
|||
posts_per_page: 40
|
||||
max_comment_length: 5000
|
||||
|
||||
tag_name_regex: ^:?[a-zA-Z0-9_-]+$
|
||||
tag_name_regex: ^[a-zA-Z0-9_:][a-zA-Z0-9_-]*$
|
||||
tag_category_name_regex: ^.{1,}$
|
||||
|
||||
default_rank: regular
|
||||
|
|
Loading…
Reference in New Issue