Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 931 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 931 Bytes

Compose Markdown

Build markdown with Jetpack Compose runtime1.

This README is made with Composable! Check out the sample.

Introduction

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!")
  }
}
  1. My item!
  2. My item!
  3. My item!

Download

Will be published to MavenCentral soon.

Footnotes

  1. Not Compose UI!