This repository has been archived by the owner on Jul 17, 2024. It is now read-only.
0.0.6
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!")