This library provides Swift UI-like Markdown support for Compose UI. All Compose UI components that can work with AnnotatedStrings are supported.
val annotatedString = parseMarkdown(stringWithMarkdown)
setContent {
BasicText(text = parsedText)
}At the moment only basic formatting is supported. If you need more complex things, like tables and images, use Compose UI.