@clevertask/scribe 0.0.13 → 0.0.14
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/dist/assets/index.css +1 -1
- package/dist/components/Menu/BarMenu.d.ts +3 -2
- package/dist/components/Menu/BarMenu.d.ts.map +1 -0
- package/dist/components/Menu/BubbleMenu.d.ts +3 -2
- package/dist/components/Menu/BubbleMenu.d.ts.map +1 -0
- package/dist/components/Menu/Mobile/ListOptionBar.d.ts +2 -1
- package/dist/components/Menu/Mobile/ListOptionBar.d.ts.map +1 -0
- package/dist/components/Scribe/extension/emoji/EmojiList.d.ts +2 -1
- package/dist/components/Scribe/extension/emoji/EmojiList.d.ts.map +1 -0
- package/dist/components/Scribe/extension/emoji/suggest.d.ts +1 -0
- package/dist/components/Scribe/extension/emoji/suggest.d.ts.map +1 -0
- package/dist/components/Scribe/extension/extension-link.d.ts +2 -1
- package/dist/components/Scribe/extension/extension-link.d.ts.map +1 -0
- package/dist/components/Scribe/extension/extension-selectedText.d.ts +2 -1
- package/dist/components/Scribe/extension/extension-selectedText.d.ts.map +1 -0
- package/dist/components/Scribe/extension/index.d.ts +3 -2
- package/dist/components/Scribe/extension/index.d.ts.map +1 -0
- package/dist/components/Scribe/extension/index.js +1 -1
- package/dist/components/Scribe/extension/slashCommand/SlashCommandList.d.ts +3 -2
- package/dist/components/Scribe/extension/slashCommand/SlashCommandList.d.ts.map +1 -0
- package/dist/components/Scribe/extension/slashCommand/SlashCommandList.js +2 -2
- package/dist/components/Scribe/extension/slashCommand/index.d.ts +3 -2
- package/dist/components/Scribe/extension/slashCommand/index.d.ts.map +1 -0
- package/dist/components/Scribe/extension/slashCommand/items.d.ts +3 -2
- package/dist/components/Scribe/extension/slashCommand/items.d.ts.map +1 -0
- package/dist/components/Scribe/extension/slashCommand/renderItems.d.ts +2 -1
- package/dist/components/Scribe/extension/slashCommand/renderItems.d.ts.map +1 -0
- package/dist/components/Scribe/extension/slashCommand/renderItems.js +1 -1
- package/dist/components/Scribe/index.d.ts +6 -4
- package/dist/components/Scribe/index.d.ts.map +1 -0
- package/dist/components/Scribe/index.js +1 -1
- package/dist/{index-CWvaDN_2.js → index-DAuPG8ME.js} +5299 -5403
- package/dist/main.d.ts +4 -3
- package/dist/main.d.ts.map +1 -0
- package/dist/{purify.es-DcWaZU6I.js → purify.es-BRDuGiV2.js} +114 -114
- package/dist/utils/convert-legacy-math-delimiters.d.ts +1 -0
- package/dist/utils/convert-legacy-math-delimiters.d.ts.map +1 -0
- package/dist/utils/create-scribe-editor.d.ts +2 -1
- package/dist/utils/create-scribe-editor.d.ts.map +1 -0
- package/dist/utils/create-scribe-editor.js +1 -1
- package/dist/utils/html-to-markdown.d.ts +1 -0
- package/dist/utils/html-to-markdown.d.ts.map +1 -0
- package/dist/utils/html-to-markdown.js +1 -1
- package/dist/utils/index.d.ts +5 -4
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/is-in-viewport.d.ts +1 -0
- package/dist/utils/is-in-viewport.d.ts.map +1 -0
- package/dist/utils/markdown-to-html.d.ts +1 -0
- package/dist/utils/markdown-to-html.d.ts.map +1 -0
- package/dist/utils/markdown-to-html.js +1 -1
- package/package.json +14 -17
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { Editor } from
|
|
2
|
-
import { FC } from
|
|
1
|
+
import { Editor } from "@tiptap/react";
|
|
2
|
+
import { FC } from "react";
|
|
3
3
|
export interface BarMenuProps {
|
|
4
4
|
editor: Editor;
|
|
5
5
|
darkMode: boolean;
|
|
6
6
|
}
|
|
7
7
|
declare const BarMenu: FC<BarMenuProps>;
|
|
8
8
|
export default BarMenu;
|
|
9
|
+
//# sourceMappingURL=BarMenu.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BarMenu.d.ts","sourceRoot":"","sources":["../../../lib/components/Menu/BarMenu.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,EAAE,EAAE,EAAyB,MAAM,OAAO,CAAC;AAclD,MAAM,WAAW,YAAY;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,QAAA,MAAM,OAAO,EAAE,EAAE,CAAC,YAAY,CA2K7B,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { Editor } from
|
|
2
|
-
import { FC } from
|
|
1
|
+
import { Editor } from "@tiptap/react";
|
|
2
|
+
import { FC } from "react";
|
|
3
3
|
export interface BubbleMenuProps {
|
|
4
4
|
editor: Editor;
|
|
5
5
|
}
|
|
6
6
|
declare const BubbleMenu: FC<BubbleMenuProps>;
|
|
7
7
|
export default BubbleMenu;
|
|
8
|
+
//# sourceMappingURL=BubbleMenu.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BubbleMenu.d.ts","sourceRoot":"","sources":["../../../lib/components/Menu/BubbleMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAgC,MAAM,EAAE,MAAM,eAAe,CAAC;AACrE,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,MAAM,WAAW,eAAe;IAC9B,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,QAAA,MAAM,UAAU,EAAE,EAAE,CAAC,eAAe,CA+JnC,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { Editor } from
|
|
1
|
+
import { Editor } from "@tiptap/core";
|
|
2
2
|
type ListOptionBarProps = {
|
|
3
3
|
editor: Editor;
|
|
4
4
|
};
|
|
5
5
|
export declare const ListOptionBar: ({ editor }: ListOptionBarProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
6
6
|
export {};
|
|
7
|
+
//# sourceMappingURL=ListOptionBar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListOptionBar.d.ts","sourceRoot":"","sources":["../../../../lib/components/Menu/Mobile/ListOptionBar.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AAGtC,KAAK,kBAAkB,GAAG;IACxB,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,eAAO,MAAM,aAAa,GAAI,YAAY,kBAAkB,mDAqC3D,CAAC"}
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export declare const EmojiList: import(
|
|
1
|
+
export declare const EmojiList: import("react").ForwardRefExoticComponent<import("react").RefAttributes<unknown>>;
|
|
2
|
+
//# sourceMappingURL=EmojiList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EmojiList.d.ts","sourceRoot":"","sources":["../../../../../lib/components/Scribe/extension/emoji/EmojiList.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,SAAS,mFAiEpB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"suggest.d.ts","sourceRoot":"","sources":["../../../../../lib/components/Scribe/extension/emoji/suggest.ts"],"names":[],"mappings":"yBAKgB;;CAAY;;;;;;;;;;;;;AAA5B,wBA6DG"}
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
declare const _default: import(
|
|
1
|
+
declare const _default: import("@tiptap/core").Mark<import("@tiptap/extension-link").LinkOptions, any>;
|
|
2
2
|
export default _default;
|
|
3
|
+
//# sourceMappingURL=extension-link.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"extension-link.d.ts","sourceRoot":"","sources":["../../../../lib/components/Scribe/extension/extension-link.ts"],"names":[],"mappings":";AAEA,wBA6CG"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Editor, Extension } from
|
|
1
|
+
import { Editor, Extension } from "@tiptap/core";
|
|
2
2
|
declare module "@tiptap/core" {
|
|
3
3
|
interface Commands {
|
|
4
4
|
selectedText: {
|
|
@@ -10,3 +10,4 @@ declare module "@tiptap/core" {
|
|
|
10
10
|
}
|
|
11
11
|
declare const _default: Extension<any, any>;
|
|
12
12
|
export default _default;
|
|
13
|
+
//# sourceMappingURL=extension-selectedText.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"extension-selectedText.d.ts","sourceRoot":"","sources":["../../../../lib/components/Scribe/extension/extension-selectedText.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEjD,OAAO,QAAQ,cAAc,CAAC;IAC5B,UAAU,QAAQ;QAChB,YAAY,EAAE;YACZ,eAAe,EAAE,MAAM,CAAC,EAAE,MAAM,EAAE,EAAE;gBAAE,MAAM,EAAE,MAAM,CAAA;aAAE,KAAK,MAAM,GAAG,IAAI,CAAC;SAC1E,CAAC;KACH;CACF;;AAED,wBAiBG"}
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
import { ScribeProps } from
|
|
2
|
-
export declare const initExtensions: (props: ScribeProps) => (import(
|
|
1
|
+
import { ScribeProps } from "..";
|
|
2
|
+
export declare const initExtensions: (props: ScribeProps) => (import("@tiptap/core").Mark<import("@tiptap/extension-link").LinkOptions, any> | import("@tiptap/core").Extension<any, any> | import("@tiptap/core").Node<import("@tiptap/extension-table-row").TableRowOptions, any> | import("@tiptap/core").Mark<import("@tiptap/extension-highlight").HighlightOptions, any>)[];
|
|
3
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../lib/components/Scribe/extension/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,IAAI,CAAC;AAsBjC,eAAO,MAAM,cAAc,GAAI,OAAO,WAAW,yTA8DhD,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import r from "./extension-link.js";
|
|
2
|
-
import { T as i, a as o, b as a, H as n, M as l, c as m, S as u, d as c, e as g, f as d, P as f, F as h, I as p, E as b, g as T } from "../../../index-
|
|
2
|
+
import { T as i, a as o, b as a, H as n, M as l, c as m, S as u, d as c, e as g, f as d, P as f, F as h, I as p, E as b, g as T } from "../../../index-DAuPG8ME.js";
|
|
3
3
|
import { S as y } from "../../../index-BfaHEr44.js";
|
|
4
4
|
import C from "./extension-selectedText.js";
|
|
5
5
|
import E from "./slashCommand/renderItems.js";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { SuggestionKeyDownProps, SuggestionProps } from
|
|
1
|
+
import { SuggestionKeyDownProps, SuggestionProps } from "@tiptap/suggestion";
|
|
2
2
|
export interface SlashCommandRef {
|
|
3
3
|
onKeyDown: (props: SuggestionKeyDownProps) => boolean;
|
|
4
4
|
}
|
|
5
|
-
export declare const SlashCommandList: import(
|
|
5
|
+
export declare const SlashCommandList: import("react").ForwardRefExoticComponent<SuggestionProps<any, any> & import("react").RefAttributes<SlashCommandRef>>;
|
|
6
|
+
//# sourceMappingURL=SlashCommandList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SlashCommandList.d.ts","sourceRoot":"","sources":["../../../../../lib/components/Scribe/extension/slashCommand/SlashCommandList.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAM7E,MAAM,WAAW,eAAe;IAC9B,SAAS,EAAE,CAAC,KAAK,EAAE,sBAAsB,KAAK,OAAO,CAAC;CACvD;AAED,eAAO,MAAM,gBAAgB,uHA6F3B,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "react/jsx-runtime";
|
|
2
|
-
import { h as n } from "../../../../index-
|
|
2
|
+
import { h as n } from "../../../../index-DAuPG8ME.js";
|
|
3
3
|
import "react";
|
|
4
|
-
import "../../../../purify.es-
|
|
4
|
+
import "../../../../purify.es-BRDuGiV2.js";
|
|
5
5
|
import "../../../../turndown.browser.es-RmA_HBaI.js";
|
|
6
6
|
import "../../../../marked.esm-H7n4rMcO.js";
|
|
7
7
|
import "../../../../utils/is-in-viewport.js";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { Extension } from
|
|
2
|
-
import { PluginKey } from
|
|
1
|
+
import { Extension } from "@tiptap/core";
|
|
2
|
+
import { PluginKey } from "@tiptap/pm/state";
|
|
3
3
|
export declare const slashMenuPluginKey: PluginKey<any>;
|
|
4
4
|
export declare const SlashCommand: Extension<any, any>;
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../lib/components/Scribe/extension/slashCommand/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAG7C,eAAO,MAAM,kBAAkB,gBAAmC,CAAC;AAEnE,eAAO,MAAM,YAAY,qBAyBvB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Editor, Range } from
|
|
2
|
-
import { ReactNode } from
|
|
1
|
+
import { Editor, Range } from "@tiptap/core";
|
|
2
|
+
import { ReactNode } from "react";
|
|
3
3
|
export declare enum SuggestionItemType {
|
|
4
4
|
BASIC_BLOCKS = "Basic",
|
|
5
5
|
ADVANCED_BLOCKS = "Advanced"
|
|
@@ -21,3 +21,4 @@ export declare const getSuggestionItems: (props: {
|
|
|
21
21
|
editor: Editor;
|
|
22
22
|
}) => SuggestionItem[];
|
|
23
23
|
export {};
|
|
24
|
+
//# sourceMappingURL=items.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"items.d.ts","sourceRoot":"","sources":["../../../../../lib/components/Scribe/extension/slashCommand/items.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAElC,oBAAY,kBAAkB;IAC5B,YAAY,UAAU;IACtB,eAAe,aAAa;CAC7B;AAED,UAAU,YAAY;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,KAAK,CAAC;CACd;AAED,MAAM,WAAW,cAAc;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,kBAAkB,CAAC;IACzB,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,OAAO,EAAE,CAAC,KAAK,EAAE,YAAY,KAAK,IAAI,CAAC;CACxC;AAED,eAAO,MAAM,kBAAkB,GAAI,OAAO;IACxC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB,qBAsNA,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SuggestionKeyDownProps, SuggestionProps } from
|
|
1
|
+
import { SuggestionKeyDownProps, SuggestionProps } from "@tiptap/suggestion";
|
|
2
2
|
declare const renderItems: (_props: any) => () => {
|
|
3
3
|
onStart: (props: SuggestionProps) => void;
|
|
4
4
|
onUpdate: (props: SuggestionProps) => void;
|
|
@@ -6,3 +6,4 @@ declare const renderItems: (_props: any) => () => {
|
|
|
6
6
|
onExit(): void;
|
|
7
7
|
};
|
|
8
8
|
export default renderItems;
|
|
9
|
+
//# sourceMappingURL=renderItems.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"renderItems.d.ts","sourceRoot":"","sources":["../../../../../lib/components/Scribe/extension/slashCommand/renderItems.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,sBAAsB,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAK7E,QAAA,MAAM,WAAW,GAAI,WAAM;qBAON,eAAe;sBAsBd,eAAe;qBAahB,sBAAsB;;CAyB1C,CAAC;AAEF,eAAe,WAAW,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { R as l, t as c } from "../../../../index-Bvgjhwaj.js";
|
|
2
|
-
import { l as o, h as d } from "../../../../index-
|
|
2
|
+
import { l as o, h as d } from "../../../../index-DAuPG8ME.js";
|
|
3
3
|
const f = (s) => () => {
|
|
4
4
|
let r, t = [], n, i = !o.isEmpty(t);
|
|
5
5
|
return {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import "katex/dist/katex.css";
|
|
2
|
+
import { ClassValue } from "clsx";
|
|
3
|
+
import { Content, Editor, Extension, JSONContent, UseEditorOptions } from "@tiptap/react";
|
|
4
|
+
import { KeyboardEventHandler } from "react";
|
|
4
5
|
export type ScribeOnChangeContents = {
|
|
5
6
|
jsonContent: Content;
|
|
6
7
|
htmlContent: Content;
|
|
@@ -31,4 +32,5 @@ export interface ScribeProps {
|
|
|
31
32
|
darkMode?: boolean;
|
|
32
33
|
mobile?: boolean;
|
|
33
34
|
}
|
|
34
|
-
export declare const Scribe: import(
|
|
35
|
+
export declare const Scribe: import("react").ForwardRefExoticComponent<ScribeProps & import("react").RefAttributes<ScribeRef>>;
|
|
36
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/components/Scribe/index.tsx"],"names":[],"mappings":"AAAA,OAAO,sBAAsB,CAAC;AAE9B,OAAO,EAAE,UAAU,EAAQ,MAAM,MAAM,CAAC;AAGxC,OAAO,EACL,OAAO,EACP,MAAM,EAGN,SAAS,EACT,WAAW,EACX,gBAAgB,EACjB,MAAM,eAAe,CAAC;AACvB,OAAO,EAEL,oBAAoB,EAKrB,MAAM,OAAO,CAAC;AAGf,MAAM,MAAM,sBAAsB,GAAG;IACnC,WAAW,EAAE,OAAO,CAAC;IACrB,WAAW,EAAE,OAAO,CAAC;IACrB,eAAe,EAAE,MAAM,CAAC;IACxB,MAAM,EAAE,MAAM,GAAG,cAAc,CAAC;CACjC,CAAC;AAEF,MAAM,WAAW,SAAS;IACxB,YAAY,EAAE,MAAM,IAAI,CAAC;IACzB,UAAU,EAAE,CACV,WAAW,EAAE,MAAM,GAAG,MAAM,GAAG,UAAU,KACtC,MAAM,GAAG,WAAW,GAAG,SAAS,CAAC;IACtC,UAAU,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IACvC,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,WAAW;IAC1B,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,sBAAsB,KAAK,IAAI,CAAC;IAC5D,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,SAAS,EAAE,CAAC;IACzB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,WAAW,CAAC,EAAE,gBAAgB,CAAC;IAC/B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,kBAAkB,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IACzC,sBAAsB,CAAC,EAAE,UAAU,CAAC;IACpC,kBAAkB,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IACzC,sBAAsB,CAAC,EAAE,UAAU,CAAC;IACpC,SAAS,CAAC,EAAE,oBAAoB,CAAC;IACjC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,eAAO,MAAM,MAAM,mGAuIjB,CAAC"}
|
|
@@ -3,7 +3,7 @@ import O from "../Menu/BarMenu.js";
|
|
|
3
3
|
import { c as l } from "../../clsx-OuTLNxxd.js";
|
|
4
4
|
import { html2md as b } from "../../utils/html-to-markdown.js";
|
|
5
5
|
import "../../marked.esm-H7n4rMcO.js";
|
|
6
|
-
import "../../purify.es-
|
|
6
|
+
import "../../purify.es-BRDuGiV2.js";
|
|
7
7
|
import { E as R } from "../../index-flsxByQS.js";
|
|
8
8
|
import { initExtensions as T } from "./extension/index.js";
|
|
9
9
|
import { E as z } from "../../index-Bvgjhwaj.js";
|