We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b232bf1 commit ecb8727Copy full SHA for ecb8727
markdown_it/common/normalize_url.py
@@ -81,7 +81,7 @@ def normalizeLink(url):
81
(
82
scheme,
83
unescape_normalize_uri(netloc),
84
- unescape_normalize_uri(path),
+ normalize_uri(path),
85
unescape_normalize_uri(params),
86
normalize_uri(query),
87
unescape_normalize_uri(fragment),
tests/test_cmark_spec/test_spec.py
@@ -19,9 +19,6 @@ def test_file(file_regression):
19
20
@pytest.mark.parametrize("entry", json.loads(TESTS_INPUT.read_text()))
21
def test_spec(entry):
22
- if entry["example"] == 599:
23
- # TODO fix Backslash-escapes do not work inside autolinks
24
- pytest.skip("autolinks backslash escape")
25
md = MarkdownIt("commonmark")
26
output = md.render(entry["markdown"])
27
expected = entry["html"]
0 commit comments