MarkupKit has been retired. Users are encouraged to migrate to the Lima project, which supports most MarkupKit features and allows developers to create iOS and tvOS applications declaratively using an intuitive Swift-based DSL.
Converting markup to Lima syntax is straightforward. For example, given this markup:
<LMColumnView spacing="16">
<UIImageView image="world.png"/>
<UILabel text="Hello, World!"/>
</LMColumnView>
the Lima equivalent is as follows:
LMColumnView(spacing: 16,
UIImage(image: UIImage(named: "world.png")),
UILabel(text: "Hello, World!")
)
For more information, see the Lima README.
Thanks for using MarkupKit!