@lowlighter/markdown 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -32,7 +32,9 @@ const renderer = await Renderer.with({
32
32
  // You can specify an existing Plugin object...
33
33
  frontmatter,
34
34
  // ...or a a HTTPS import that points towards a compatible Plugin object!
35
- new URL("https://esm.sh/jsr/@libs/markdown/plugins/gfm"),
35
+ // Warning: this is not possible if you are using the JSR package version
36
+ // https://github.com/denoland/deno/pull/22623
37
+ "https://esm.sh/jsr/@libs/markdown/plugins/gfm",
36
38
  ],
37
39
  })
38
40
  await renderer.render("# foo")
package/deno.jsonc CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "icon": "🖨️",
3
3
  "name": "@libs/markdown",
4
- "version": "1.2.1",
4
+ "version": "1.2.2",
5
5
  "description": "Markdown renderer with optional plugins based on the unified ecosystem.",
6
6
  "keywords": [
7
7
  "markdown",