Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 359 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 359 Bytes

lhtml

Very simpLe HTML DSL for erlang

table() ->
    html:table([
        html:caption(html:h3(<<"Fruits">>)),
        html:tr([html:td("Apple"), html:td(5)]),
        html:tr([html:td('Oranges'), html:td(4)]),
        html:tr(html:td(html:h3("Vegetables"), {colspan, 2})),
        html:tr([html:td('Cucumbers'), html:td(2)])
    ]).