htags
v0.3.1
Published
htags is a simple library for working with html intended to use with coffeescript in electron or browserify
Downloads
33
Readme
htags
htags is a simple library for working with html intended to use with coffeescript in electron or browserify
examples:
require("htags").import()
class MyUIComp
render: ->
div {class:"classname"}, "hello world"
H = require("htags").tags
class MyUIComp
render: ->
H.div [
H.p "hello"
H.br
H.div "world"
]