mirror of
https://github.com/MillironX/Kelpie.jl.git
synced 2025-01-15 09:19:07 -05:00
Fix the DOCTYPE to be HTML5
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
parent
9a4b8364f6
commit
33cddd980b
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ end #function
|
||||||
Creates a new HTML document filled with `content`.
|
Creates a new HTML document filled with `content`.
|
||||||
"""
|
"""
|
||||||
function html(content...)
|
function html(content...)
|
||||||
doc = EzXML.HTMLDocumentNode(nothing, nothing)
|
doc = EzXML.HTMLDocumentNode("about:legacy-compat", nothing)
|
||||||
link_or_text!(doc, content...)
|
link_or_text!(doc, content...)
|
||||||
return doc
|
return doc
|
||||||
end #function
|
end #function
|
||||||
|
|
Loading…
Reference in a new issue