This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Description
it would be nice to have
module HTML
function h1()... end
function div() ... end
...
end
So that we can use
HTML.h1 instead of html_h1
and potentially users can import the components they want in the beginning so as to not have to qualify it later.
Can still be done with backwards compatibility by simply defining
const html_div = HTML.div
or deprecating:
Base.@deprecate_binding html_div HTML.div
which will allow removing it in a later release after fair warning.
This is not a deal breaker, so feel free to not do it.
I'm very happy to see a Dashboard library for julia!