I'm probably missing something here. So Jetbrains ...
# compose-web
r
I'm probably missing something here. So Jetbrains is investing in a Multiplatform Markdown processor written in Kotlin and the README.md mentions:
The processor is written in pure Kotlin (with a little flex) so it can be compiled to both JS and Java bytecode and thus can be used everywhere.
Does it mean I could be able to use it by adding the dependencies within:
Copy code
val jsMain by getting {
    dependencies {
        implementation(compose.web.core)
        implementation(compose.runtime)
        implementation("org.jetbrains:markdown:0.2.0.pre-55") // Like this but it does not work ATM
    }
}
K 1
j
Use a newer version
0.3.6 is latest
r
It works, thanks 🙂 with the pre-xy I assumed it was the latest