ソースを参照

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:
             yield p
 
-    BAD_TAG_CHARS = set("{}[]\\()#?")
+    BAD_TAG_CHARS = set("{}[]\\#?")
 
     @staticmethod
     def is_valid_tag_name(tag_name: str) -> bool: