upgrading code for python 3.x

closes #38
This commit is contained in:
AlexVonB
2021-02-21 23:06:21 +01:00
parent ed406d3206
commit 99365de669
3 changed files with 9 additions and 6 deletions

View File

@@ -2,7 +2,7 @@ from markdownify import markdownify as md
def test_underscore():
assert md('_hey_dude_') == '\_hey\_dude\_'
assert md('_hey_dude_') == r'\_hey\_dude\_'
def test_xml_entities():