Alex Styl
<html>
<div></div>
<html><div></div></html
typealias Html = FlowContent fun writeHtml(builderAction: Html.() -> Unit): String { return createHTML(prettyPrint = false) .apply { div { builderAction() } } .finalize() .removePrefix("<div>") .removeSuffix("</div>") }
Tim Schraepen
Anders Sveen
A modern programming language that makes developers happier.