Do not create close tags for br elements

This commit is contained in:
David Fox 2020-06-04 12:40:14 -07:00
parent 1fd196fbb1
commit 425f36c531

View File

@ -48,6 +48,9 @@ instance AsMarkup Element where
where tag = toStatic eltName
begin = toStatic $ "<" <> eltName
end = toStatic $ "</" <> eltName <> ">"
end = case eltName of
"br" -> toStatic ""
_ -> toStatic $ "</" <> eltName <> ">"
kids = foldMap (toMarkup convertEntities) eltChildren
class Renderable a where