Module skooma.env

Mini-DSL for DOM generation.

Usage:

    local env = require 'skooma.env'
    local html = env 'html'
    local node = html.h1 {
    	"Example Title";
    	html.a {
    		href = "https://example.org/",
    		"Example Link"
    	}
    }
    print(node)
    


generated by LDoc 1.4.6 Last updated 2022-12-26 00:16:42