markdown icon indicating copy to clipboard operation
markdown copied to clipboard

A cross-platform clojure/script parser for Markdown

Results 11 markdown issues
Sort by recently updated
recently updated
newest added

Specifically with truffle api library dropping `sun.misc.Unsafe` which is no longer present in Java 22: * https://github.com/oracle/graal/pull/7510 * https://bugs.openjdk.org/browse/JDK-8316160 Closes #23. 🚧 This will probably not be merged, as we'd...

As reported in Clerk https://github.com/nextjournal/clerk/issues/642. * https://bugs.openjdk.org/browse/JDK-8316160?subTaskView=unresolved * https://github.com/oracle/graal/pull/7510

bug

Given an input markdown file, important information is lost ```clojure (def text (slurp "md/try-again.md")) (def doc (md/parse text)) (def result (mdt/->text doc)) (spit "md/try-again2.md" result) (deftest ttt (is (= result...

Transform markdown data back into text. Closes #22. [Conversion of Clojure namespaces to markdown documents and back](https://snapshots.nextjournal.com/markdown/build/bc356f503d6c30925c14aff6f8f32618c3e416ec/notebooks/clerk_to_markdown.html) might be a possible use case.

Hi, I would like to allow the possibility of inlining HTML in Markdown. I understand you disable this for security reason I guess but can it be made configurable somehow?...

There's a dependency on katex which shows up in Clerk's js bundle. Would be nice if we could drop this or make it optional, as Clerk isn't using it for...

Added tutorial for implementing inline custom emoji support to the Hiccup renderer, using syntax like `:bonk:` `:lain:` `:nonbinary:` etc.