Skip to content

1.2.2

Latest
Compare
Choose a tag to compare
@micheltlutz micheltlutz released this 28 Nov 02:01
59ea759

What's Changed

Full Changelog: 1.2.1...1.2.2

Usage

let document = html {
    Button(attributes: [Attribute(key: "class", value: "button-class")], children: [
        Span(attributes: [Attribute(key: "class", value: "icon-bar")])
    ])
}

Output

<html><button class="button-class" type="button"><span class="icon-bar"></span></button></html>