1
0
html/readme.md

35 lines
559 B
Markdown

# HTML
Package html provides functions for programmatically composing and rendering HTML documents, fragments and templates.
Docs: https://godocs.io/code.squareroundforest.org/arpio/html
Example:
```
package main
import (
"os"
"code.squareroundforest.org/arpio/html"
. "code.squareroundforest.org/arpio/html/tag"
)
func main() {
html.RenderIndent(
os.Stdout,
html.Indent(),
Doctype("html"),
Html(
Head(Title("Hello, world!")),
Body(
H1("Hello, world!"),
P("This a sample HTML page."),
),
),
)
}
```
*Made in Berlin, DE*