Simple HTML Generation https://minihtml.trendels.name/
1from minihtml.tags import a, body, div, head, html, img, li, p, title, ul
2
3links = [("Home", "/"), ("About Me", "/about"), ("Projects", "/projects")]
4
5with html(lang="en") as elem:
6 with head:
7 title("hello, world!")
8 with body, div["#content main"]:
9 p("Welcome to ", a(href="https://example.com/")("my website"))
10 img(src="hello.png", alt="hello")
11 with ul:
12 for title, url in links:
13 li(a(href=url)(title))
14
15print(elem)