← Back to context

Comment by pb82

6 years ago

You could use the builder pattern:

Div { H1("Title") }.Attr("class", "footer")

Then you dont really end up with a DSL that looks just like the one in the article, though – this is noticeably less nice :)

The best I could think off were designated initializers like:

    Div{{.class = "footer"}, B{"some text"}}

But making tags, attributes and plain text work nearly as nicely as in the lua table example seems not super straightforward to me.