Skip to content

Commit 4be8c58

Browse files
committed
fix silly error
1 parent e09fc07 commit 4be8c58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

markdown/htmlparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def handle_starttag(self, tag, attrs):
6363
self.cleandoc.append(text)
6464

6565
def handle_endtag(self, tag):
66-
text = '<{0}/>'.format(tag)
66+
text = '</{0}>'.format(tag)
6767
if tag in self.stack:
6868
while self.stack:
6969
if self.stack.pop() == tag:

0 commit comments

Comments
 (0)