Skip to content

Commit

Permalink
closes #64 (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
fqrious authored Nov 19, 2024
1 parent bbfb899 commit d6a94fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion txt2stix/lookups.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def find_get_indexes_re(term, input_str):
for open, close in ['""', "[]", "()", "``", "''",]:
rexp.append(re.escape(open)+ "(" + re_i +")" + re.escape(close))
rexp = "|".join(rexp)
r = re.compile(rexp)
r = re.compile(rexp, flags=re.IGNORECASE)
for match in r.finditer(input_str):
left, right = match.span()
yield left+1
Expand Down

0 comments on commit d6a94fb

Please sign in to comment.