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 3cdffbb commit 011e0b4Copy full SHA for 011e0b4
src/Halogen/VDom/StringRenderer.purs
@@ -49,5 +49,5 @@ render getTagType renderAttrs renderWidget = go
49
in
50
"<" <> name <> (if S.null as then "" else " ") <> as <>
51
if A.null children
52
- then if getTagType en == SelfClosingTag then "/>" else "</" <> name <> ">"
+ then if getTagType en == SelfClosingTag then "/>" else "></" <> name <> ">"
53
else ">" <> S.joinWith "" (map go children) <> "</" <> name <> ">"
0 commit comments