Files
lsf-bench/lib/html
2025-07-20 20:23:49 -06:00
..
2025-07-20 20:23:49 -06:00
2025-07-20 20:23:49 -06:00
2025-07-20 20:23:49 -06:00
2025-07-20 20:23:49 -06:00
2025-07-20 20:23:49 -06:00
2025-07-20 20:23:49 -06:00
2025-07-20 20:23:49 -06:00
2025-07-20 20:23:49 -06:00

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(),
	},
}