Skip to content

Commit

Permalink
v0.6.157
Browse files Browse the repository at this point in the history
  • Loading branch information
zampino committed Sep 27, 2024
1 parent 4f402f9 commit 07b8b08
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# Changelog

## 0.6 Unreleased
## Unreleased

* We're swapping out GraalJS in favour of [commonmark-java](https://github.com/markdown-it/markdown-it) on the JVM side. The cljs implementation stays the same.
* Comply with commonmark's suggested rendering of images by default ([#18](https://github.com/nextjournal/markdown/issues/18)). This is a breaking change.
...

## 0.6.157

* Swap out GraalJS ([#28](https://github.com/nextjournal/markdown/issues/28)) in favour of [commonmark-java](https://github.com/markdown-it/markdown-it) on the JVM side.
This makes the library compatible with Java 22 and yields an approximate speedup of 10x. The clojurescript implementation stays the same.
* Comply with commonmark rendering of images by default (see [#18](https://github.com/nextjournal/markdown/issues/18)).

## 0.5.148

Expand Down
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ A cross-platform clojure library for [Markdown](https://en.wikipedia.org/wiki/Ma

## Flavor

By building on top of [markdown-it](https://github.com/markdown-it/markdown-it), we adhere to [CommonMark Spec](https://spec.commonmark.org/0.30/) (with some exceptions[^images]) and also comply with extensions from [Github flavoured Markdown](https://github.github.com/gfm). Additionally, we parse $\LaTeX$ formulas (delimited by a $ for inline rendering or $$ for display mode).

For more details you might have a look at [the set of plugins](https://github.com/nextjournal/markdown/blob/main/src/js/markdown.js) we're using.
We adhere to [CommonMark Spec](https://spec.commonmark.org/0.30/) and comply with extensions from [Github flavoured Markdown](https://github.github.com/gfm). Additionally, we parse $\LaTeX$ formulas (delimited by a $ for inline rendering or $$ for display mode).

## Usage

Expand Down Expand Up @@ -116,6 +114,3 @@ The transformation of markdown node types can be customised like this:
## Extensibility

We added minimal tooling for [extending markdown expressions](https://nextjournal.github.io/markdown/notebooks/parsing_extensibility).

[^images]: isolated images are not wrapped in a paragraph
node, unless they're part of inline content. See more examples in this [notebook](https://nextjournal.github.io/markdown/notebooks/images).
2 changes: 1 addition & 1 deletion resources/META-INF/nextjournal/markdown/meta.edn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{:version "0.5.148"}
{:version "0.6.157"}

0 comments on commit 07b8b08

Please sign in to comment.