浏览代码

Allow tags with parens

Getty Ritter 4 年之前
父节点
当前提交
9223fd3865
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lc/model.py

+ 1 - 1
lc/model.py

@@ -353,7 +353,7 @@ class Tag(Model):
         while p := p.parent:
         while p := p.parent:
             yield p
             yield p
 
 
-    BAD_TAG_CHARS = set("{}[]\\()#?")
+    BAD_TAG_CHARS = set("{}[]\\#?")
 
 
     @staticmethod
     @staticmethod
     def is_valid_tag_name(tag_name: str) -> bool:
     def is_valid_tag_name(tag_name: str) -> bool: