You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# but need to check these fixes from https://www.npmjs.com/package/mdurl:
15
-
#
16
-
# Parse url string. Similar to node's url.parse,
17
-
# but without any normalizations and query string parse.
18
-
# url - input url (string)
19
-
# slashesDenoteHost - if url starts with //, expect a hostname after it. Optional, false.
20
-
# Difference with node's url:
7
+
from .. import_punycode
21
8
22
-
# No leading slash in paths, e.g. in url.parse('http://foo?bar') pathname is ``, not /
23
-
# Backslashes are not replaced with slashes, so http:\\example.org\ is treated like a relative path
24
-
# Trailing colon is treated like a part of the path, i.e. in http://example.org:foo pathname is :foo
25
-
# Nothing is URL-encoded in the resulting object,
26
-
# (in joyent/node some chars in auth and paths are encoded)
27
-
# url.parse() does not have parseQueryString argument
28
-
# Removed extraneous result properties: host, path, query, etc.,
29
-
# which can be constructed using other parts of the url.
30
9
31
-
32
-
# ################# Copied from Commonmark.py #################
# add '%' to exclude list because of https://github.com/markdown-it/markdown-it/issues/720
0 commit comments