HTMLElement is an AppleScript libraryt to build HTML with programming.
The structre of HTML document is built by script object through well arranged object orientied interface. And the object structre can output well fomatted HTML data.
This library is useful when a kind of data is converted into HTML data.
useHTMLElement : script "HTMLElement"
tellHTMLElement'smake_with("html", {})
tellpush_element_with("head", {})
tellpush_element_with("title", {})
push("Welcome to HTMLElement")
endtell
endtell
tellpush_element_with("body", {})
tellpush_element_with("p", {})
push("hello")
endtell
setbody_tagtoit
endtell
sethtml_tagtoit
endtell
setcomment_tagtoHTMLElement'scomment_with("this is comment", {})