Plot is a template language created in 2019 by John Sundell.
#883on PLDB | 5Years Old |
git clone https://github.com/JohnSundell/Plot
A DSL for writing type-safe HTML, XML and RSS in Swift.
let html = HTML(
.head(
.title("My website"),
.stylesheet("styles.css")
),
.body(
.div(
.h1("My website"),
.p("Writing HTML in Swift is pretty great!")
)
)
)