Add the dependency below to your module's build.gradle.kts file:
sourceSets {
val commonMain by getting {
dependencies {
implementation("com.kmpstudy:cmp-markdown:0.5.0")
}
}
} val markdownContent = """
## Download
""".trimIndent()
MarkdownParser(markdownContent).parse().invoke()