We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 67a693c + b467fde commit 37fc5dbCopy full SHA for 37fc5db
ftplugin/orgmode/liborgmode/dom_obj.py
@@ -25,10 +25,10 @@
25
# heading regex
26
REGEX_HEADING = re.compile(
27
r'^(?P<level>\*+)(\s+(?P<title>.*?))?\s*(\s(?P<tags>:[\w_:@]+:))?$',
28
- flags=re.U | re.L)
+ flags=re.U)
29
REGEX_TAG = re.compile(
30
r'^\s*((?P<title>[^\s]*?)\s+)?(?P<tags>:[\w_:@]+:)$',
31
32
REGEX_TODO = re.compile(r'^[^\s]*$')
33
34
# checkbox regex:
@@ -40,7 +40,7 @@
40
OrderListType = [u'.', u')']
41
REGEX_CHECKBOX = re.compile(
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)
+ % (''.join(UnOrderListType), ''.join(OrderListType)), flags=re.U)
44
45
46
class DomObj(object):
0 commit comments