@lowlighter/markdown 1.0.0 → 1.2.0
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 +51 -6
- package/deno.jsonc +12 -7
- package/deno.lock +40 -424
- package/mod.mjs +1 -1
- package/package.json +6 -3
- package/plugins/math.mjs +1 -0
- package/plugins/mermaid.mjs +1 -0
- package/plugins/mod.mjs +1 -0
- package/plugins/mod.ts +14 -0
- package/renderer.mjs +1 -1
- package/renderer.ts +19 -5
- package/renderer_test.ts +5 -0
package/plugins/mod.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export { default as anchors } from "./anchors.ts"
|
|
2
|
+
export { default as directives, directive, h } from "./directives.ts"
|
|
3
|
+
export { default as emojis } from "./emojis.ts"
|
|
4
|
+
export { default as frontmatter } from "./frontmatter.ts"
|
|
5
|
+
export { default as gfm } from "./gfm.ts"
|
|
6
|
+
export { default as highlighting } from "./highlighting.ts"
|
|
7
|
+
export { default as linebreaks } from "./linebreaks.ts"
|
|
8
|
+
export { default as markers } from "./markers.ts"
|
|
9
|
+
export { default as math } from "./math.ts"
|
|
10
|
+
export { default as mermaid } from "./mermaid.ts"
|
|
11
|
+
export { default as ruby } from "./ruby.ts"
|
|
12
|
+
export { create as createSanitization, default as sanitize } from "./sanitize.ts"
|
|
13
|
+
export { default as uncomments } from "./uncomments.ts"
|
|
14
|
+
export { default as wikilinks } from "./wikilinks.ts"
|