Open sboishtyan opened 4 years ago
JB's a big company and there are different projects using markdown :) Several use this generator, including IntelliJ. If you need purely Kotlin one, I don't know other ones (though I haven't searched really). If JVM-only solution is fine for you, you might want to look at https://github.com/atlassian/commonmark-java. It has very similar architecture, and, frankly, is more polished than this library at the moment for common use cases.
Thank you for your advice. In the first message, I tried to say that I need not only parsing but generating.
As I see atlassian commonmark
like your library only parses. Maybe you know libraries that provide DSL for writing type-safe Markdown in the code?
@sboishtyan It might not be exactly what you are looking for but I am working on a Markdown DSL here: https://github.com/mfwgenerics/markout
I need a library that will generate
Markdown
. I found https://github.com/mahdi13/markdownk but it looks poor. I realize that issue is not related to this project, but maybe you know libraries to do that? What do you use in JB for generatingMarkdown
files?