Build markdown with Jetpack Compose runtime1.
This README is made with Composable! Check out the sample.
Jetpack Compose is often known as a UI toolkit, but it is actually a library providing excellent node traversal implementation. This repository creates our own Compose UI that produces Markdown strings using only Compose's runtime features.
This development began with the purpose of learning Compose Runtime and has been made public to spread the value of the Compose Runtime.
You can generate markdown programmatically using the power of Kotlin + Composable
.
List(ordered = true) {
repeat(3) {
Text("My item!")
}
}
- My item!
- My item!
- My item!
Will be published to MavenCentral soon.
Footnotes
-
Not Compose UI! ↩