diff options
author | Juan Carlos <juancarlospaco@gmail.com> | 2019-11-15 16:23:03 -0300 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-11-15 20:23:03 +0100 |
commit | 9c46526cfa928f884b06ea78f3f7304bdc626ed1 (patch) | |
tree | c2f237443b7aeb640b26b8d2fb67d5764a87f264 /lib/pure/htmlgen.nim | |
parent | 83b7656c0e723a2e68459733e7706f3611a1ddc8 (diff) | |
download | Nim-9c46526cfa928f884b06ea78f3f7304bdc626ed1.tar.gz |
Fix htmlgen html lang (#12668) [backport]
* Fix HTMLGen enable lang on html tag
Diffstat (limited to 'lib/pure/htmlgen.nim')
-rw-r--r-- | lib/pure/htmlgen.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/htmlgen.nim b/lib/pure/htmlgen.nim index 4887e6144..eb9dd9a73 100644 --- a/lib/pure/htmlgen.nim +++ b/lib/pure/htmlgen.nim @@ -321,7 +321,7 @@ macro header*(e: varargs[untyped]): untyped = macro html*(e: varargs[untyped]): untyped = ## generates the HTML ``html`` element. - result = xmlCheckedTag(e, "html", "xmlns", "") + result = xmlCheckedTag(e, "html", "xmlns" & commonAttr, "") macro hr*(): untyped = ## generates the HTML ``hr`` element. |