We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e09fc07 commit 4be8c58Copy full SHA for 4be8c58
markdown/htmlparser.py
@@ -63,7 +63,7 @@ def handle_starttag(self, tag, attrs):
63
self.cleandoc.append(text)
64
65
def handle_endtag(self, tag):
66
- text = '<{0}/>'.format(tag)
+ text = '</{0}>'.format(tag)
67
if tag in self.stack:
68
while self.stack:
69
if self.stack.pop() == tag:
0 commit comments