rewrote text processing to not escape _ in code

fixes #47
This commit is contained in:
AlexVonB
2021-07-11 13:10:59 +02:00
parent 828e116530
commit 4aa6cf2a24
2 changed files with 13 additions and 8 deletions

View File

@@ -74,6 +74,7 @@ def test_br():
def test_code():
inline_tests('code', '`')
assert md('<code>this_should_not_escape</code>') == '`this_should_not_escape`'
def test_del():