Create a HTML anchor tag.
Example:
# Example for wa
try
wa("message")
catch err
println "Error"
endtry
Create a HTML body tag wrapping.
Example:
# Example for wbody
println wbody("main content")
Create a HTML division tag wrapping.
Example:
# Example for wdiv
println wdiv("content")
Create a HTML h1 header tag wrapping.
Example:
# Example for wh1
println wh1("Title")
Create a HTML h2 header tag wrapping.
Example:
# Example for wh2
println wh2("Subtitle")
Create a HTML h3 header tag wrapping.
Example:
# Example for wh3
println wh3("Section")
Create a HTML h4 header tag wrapping.
Example:
# Example for wh4
println wh4("Subsection")
Create a HTML h5 header tag wrapping.
Example:
# Example for wh5
println wh5("Detail")
Create a HTML head tag wrapping.
Example:
# Example for whead
println whead("header")
Create a HTML image tag.
Example:
# Example for wimg
println wimg("test.png")
Create a HTML list tag wrapping.
Example:
# Example for wli
println wli("Item")
Create a HTML hyper-link tag.
Example:
# Example for wlink
println wlink("https://example.com")
Create a HTML ordered list tag wrapping.
Example:
# Example for wol
try
wol("00:11:22:33:44:55")
catch err
println "WOL failed"
endtry
Create a HTML paragraph tag wrapping.
Example:
# Example for wp
println wp("Paragraph text")
Create a HTML page tag wrapping.
Example:
# Example for wpage
println wpage("Title", "Body content")
Create a HTML table tag wrapping.
Example:
# Example for wtable
println wtable("data", map(.class "table"))
Create a HTML table body tag wrapping.
Example:
# Example for wtbody
println wtbody("body content")
Create a HTML TD table data tag wrapping.
Example:
# Example for wtd
println wtd("Cell")
Create a HTML TH table header tag wrapping.
Example:
# Example for wth
println wth("Header")
Create a HTML table head tag wrapping.
Example:
# Example for wthead
println wthead("header row")
Create a HTML TR table row tag wrapping.
Example:
# Example for wtr
println wtr("row content")
Create a HTML unordered list tag wrapping.
Example:
# Example for wul
println wul("items", map(.class "list"))