You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the l function is called on runtime and generates the HTML string on the fly. I want this package to be able to be used as a way to structure writing pure HTML strings, so it may be cool to have some compile time macros which compile l() calls straight into the HTML string. We could use babel-plugin-macros or SweetJS, but I believe Sweet is no longer maintained. We could first only compile l() calls that use constants as parameters and later compile with variables too.
The text was updated successfully, but these errors were encountered:
Currently the
l
function is called on runtime and generates the HTML string on the fly. I want this package to be able to be used as a way to structure writing pure HTML strings, so it may be cool to have some compile time macros which compilel()
calls straight into the HTML string. We could usebabel-plugin-macros
orSweetJS
, but I believe Sweet is no longer maintained. We could first only compilel()
calls that use constants as parameters and later compile with variables too.The text was updated successfully, but these errors were encountered: