Skip to content

Commit d23b82b

Browse files
committed
no-op cleanup
1 parent 06819ac commit d23b82b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

extract_README.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ def write(s, verbatim):
8787
for l in sio:
8888

8989
# handle links
90-
l = re.sub( "([^ ]+) *\((https?://[^ ]+)\)", "[[\\2][\\1]]", l)
90+
l = re.sub( r"([^ ]+) *\((https?://[^ ]+)\)",
91+
r"[[\2][\1]]",
92+
l)
9193

9294
if in_quote is None:
9395
if len(l) <= 1:

0 commit comments

Comments
 (0)