plot is a template language created in 2019 by John Sundell.
git clone https://github.com/JohnSundell/Plot
#875on PLDB | 4Years Old |
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!")
)
)
)