Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

0.0.6

Compare
Choose a tag to compare
@micheltlutz micheltlutz released this 22 Dec 13:40
· 21 commits to develop since this release
5c448b4

New Composite class to group elements without tag

Usage

let element = CompositeElements()
element.add("Hello, World!")
element.add(Label("My Label"))

// output: Hello, World!<label>My Label</label>

New Struct factory FactoryElements to remove duplicated functions

Usage

let element = FactoryElements.textWith("Hello, World!")