Skip to content

Commit 3893ad6

Browse files
committed
chore: remove debug print from interlinks
1 parent 9e3bbba commit 3893ad6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

_extensions/interlinks/interlinks.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def parse_rst_style_ref(full_text):
7777

7878
import re
7979

80-
pf.debug(full_text)
80+
# pf.debug(full_text)
8181

8282
m = re.match(r"(?P<text>.+?)\<(?P<ref>[a-zA-Z\.\-: _]+)\>", full_text)
8383
if m is None:
@@ -147,8 +147,6 @@ def visit(el: pf.Plain, doc):
147147
@dispatch
148148
def visit(el: pf.Link, doc):
149149
if el.url.startswith("%60") and el.url.endswith("%60"):
150-
pf.debug("In a markdown link ref")
151-
152150
url = el.url[3:-3]
153151

154152
# Get URL ----

0 commit comments

Comments
 (0)