website/lib/html/README.md
2026-02-22 00:18:52 -05:00

443 B

HTMLuau

Simple HTML templating in Luau.

html({ lang = "en" }) {
	head() {
		title() {
			"Hello World",
		},
	},
	body() {
		h1() {
			"Hello World",
		},
		button({ onclick = "alert('Hello World!')" }) {
			"Click Me",
		},
		p() {
			"This is a simple HTML page generated using Luau.",
			"Lines are concatenated.",
			"So you can write sentences on separate lines.",
			"<html> is properly excaped.",
		},
		button(),
	},
}