We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c4da3a commit 0d013a3Copy full SHA for 0d013a3
taskwiki/regexp.py
@@ -46,8 +46,7 @@
46
re.compile(
47
'^' # Starts at the begging of the line
48
'[=]+' # Heading begging
49
- '(?P<name>[^=\|\[\{]*)' # Name of the viewport, all before the | sign
50
- # Cannot include '[', '=', '|, and '{'
+ '(?P<name>[^=\|]*)' # Name of the viewport, all before the | sign
51
'\|' # Colon
52
'(?P<filter>[^=\|]+?)' # Filter
53
'(' # Optional defaults
@@ -65,8 +64,7 @@
65
64
66
67
'[#]+' # Heading begging
68
- '(?P<name>[^#\|\[\{]*)' # Name of the viewport, all before the | sign
69
+ '(?P<name>[^#\|]*)' # Name of the viewport, all before the | sign
70
71
'(?P<filter>[^#\|]+?)' # Filter
72
0 commit comments