1
0
html/readme.md
2025-11-03 03:09:46 +01:00

617 B

HTML

Package html provides functions for programmatically composing and rendering HTML documents, fragments and templates.

Docs:

Example:

package main

import (
	"os"
	"code.squareroundforest.org/arpio/html"
	. "code.squareroundforest.org/arpio/html/tag"
)

func main() {
	html.Write(
		os.Stdout,
		html.Indent(),
		Doctype("html"),
		Html(
			Head(
				Title("Hello, world!"),
				Meta("charset", "utf-8"),
			),
			Body(
				H1("Hello, world!"),
				P("This is a sample HTML page."),
			),
		),
	)
}

Made in Berlin, DE