remove print

This commit is contained in:
Sean Dockray 2020-06-08 23:03:59 +10:00
parent 3711944640
commit 249d950a70
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ def get_record_text(post, level=0):
else:
prefix = prefixes.get(child.type, "")
text += prefix + child.title.encode('utf-8').decode('utf-8') + "\n\n"
print(text)
text = re.sub('`(bib|session|topic):([a-zA-Z0-9-]+)`', r'![](\1:\2)', text)
return text