File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
ftplugin/orgmode/liborgmode Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 25
25
# heading regex
26
26
REGEX_HEADING = re .compile (
27
27
r'^(?P<level>\*+)(\s+(?P<title>.*?))?\s*(\s(?P<tags>:[\w_:@]+:))?$' ,
28
- flags = re .U | re . L )
28
+ flags = re .U )
29
29
REGEX_TAG = re .compile (
30
30
r'^\s*((?P<title>[^\s]*?)\s+)?(?P<tags>:[\w_:@]+:)$' ,
31
- flags = re .U | re . L )
31
+ flags = re .U )
32
32
REGEX_TODO = re .compile (r'^[^\s]*$' )
33
33
34
34
# checkbox regex:
40
40
OrderListType = [u'.' , u')' ]
41
41
REGEX_CHECKBOX = re .compile (
42
42
r'^(?P<level>\s*)(?P<type>[%s]|([a-zA-Z]|[\d]+)[%s])(\s+(?P<status>\[.\]))?\s*(?P<title>.*)$'
43
- % ('' .join (UnOrderListType ), '' .join (OrderListType )), flags = re .U | re . L )
43
+ % ('' .join (UnOrderListType ), '' .join (OrderListType )), flags = re .U )
44
44
45
45
46
46
class DomObj (object ):
You can’t perform that action at this time.
0 commit comments