mardora 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/LICENSE +21 -0
- package/README.md +113 -0
- package/dist/chunk-3OCUX4OO.js +7690 -0
- package/dist/chunk-3OCUX4OO.js.map +1 -0
- package/dist/chunk-3ZOCCFDL.cjs +74 -0
- package/dist/chunk-3ZOCCFDL.cjs.map +1 -0
- package/dist/chunk-7JOEPNEV.cjs +7740 -0
- package/dist/chunk-7JOEPNEV.cjs.map +1 -0
- package/dist/chunk-BIKZQZ6W.js +33 -0
- package/dist/chunk-BIKZQZ6W.js.map +1 -0
- package/dist/chunk-EQJESPP2.js +234 -0
- package/dist/chunk-EQJESPP2.js.map +1 -0
- package/dist/chunk-G4SE26YY.js +70 -0
- package/dist/chunk-G4SE26YY.js.map +1 -0
- package/dist/chunk-KNDWF2DP.cjs +35 -0
- package/dist/chunk-KNDWF2DP.cjs.map +1 -0
- package/dist/chunk-MLBEBFHB.cjs +2971 -0
- package/dist/chunk-MLBEBFHB.cjs.map +1 -0
- package/dist/chunk-P7JFCYU3.js +905 -0
- package/dist/chunk-P7JFCYU3.js.map +1 -0
- package/dist/chunk-SWFUKJDO.cjs +243 -0
- package/dist/chunk-SWFUKJDO.cjs.map +1 -0
- package/dist/chunk-WFVCG4LD.cjs +926 -0
- package/dist/chunk-WFVCG4LD.cjs.map +1 -0
- package/dist/chunk-XL6WFGJT.js +2901 -0
- package/dist/chunk-XL6WFGJT.js.map +1 -0
- package/dist/editor/index.cjs +277 -0
- package/dist/editor/index.cjs.map +1 -0
- package/dist/editor/index.d.cts +186 -0
- package/dist/editor/index.d.ts +186 -0
- package/dist/editor/index.js +4 -0
- package/dist/editor/index.js.map +1 -0
- package/dist/index.cjs +405 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +13 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/index.cjs +12 -0
- package/dist/lib/index.cjs.map +1 -0
- package/dist/lib/index.d.cts +16 -0
- package/dist/lib/index.d.ts +16 -0
- package/dist/lib/index.js +3 -0
- package/dist/lib/index.js.map +1 -0
- package/dist/mardora-DCwjomil.d.cts +640 -0
- package/dist/mardora-DCwjomil.d.ts +640 -0
- package/dist/plugins/index.cjs +104 -0
- package/dist/plugins/index.cjs.map +1 -0
- package/dist/plugins/index.d.cts +740 -0
- package/dist/plugins/index.d.ts +740 -0
- package/dist/plugins/index.js +7 -0
- package/dist/plugins/index.js.map +1 -0
- package/dist/preview/index.cjs +38 -0
- package/dist/preview/index.cjs.map +1 -0
- package/dist/preview/index.d.cts +101 -0
- package/dist/preview/index.d.ts +101 -0
- package/dist/preview/index.js +5 -0
- package/dist/preview/index.js.map +1 -0
- package/dist/types-NBsaxl4d.d.cts +71 -0
- package/dist/types-Pw2SWWAR.d.ts +71 -0
- package/package.json +92 -0
- package/src/editor/attachments/extension.ts +181 -0
- package/src/editor/attachments/format.ts +63 -0
- package/src/editor/attachments/index.ts +3 -0
- package/src/editor/attachments/types.ts +37 -0
- package/src/editor/heading-fold/config.ts +25 -0
- package/src/editor/heading-fold/extension.ts +268 -0
- package/src/editor/heading-fold/extract.ts +88 -0
- package/src/editor/heading-fold/index.ts +5 -0
- package/src/editor/heading-fold/theme.ts +85 -0
- package/src/editor/heading-fold/types.ts +24 -0
- package/src/editor/i18n.ts +13 -0
- package/src/editor/icons/index.ts +367 -0
- package/src/editor/index.ts +16 -0
- package/src/editor/mardora.ts +257 -0
- package/src/editor/media-lightbox-theme.ts +146 -0
- package/src/editor/media-lightbox.ts +125 -0
- package/src/editor/plugin.ts +294 -0
- package/src/editor/selection-toolbar/activation.ts +123 -0
- package/src/editor/selection-toolbar/commands.ts +279 -0
- package/src/editor/selection-toolbar/extension.ts +564 -0
- package/src/editor/selection-toolbar/i18n.ts +164 -0
- package/src/editor/selection-toolbar/index.ts +7 -0
- package/src/editor/selection-toolbar/menu.ts +252 -0
- package/src/editor/selection-toolbar/position.ts +43 -0
- package/src/editor/selection-toolbar/theme.ts +195 -0
- package/src/editor/selection-toolbar/types.ts +155 -0
- package/src/editor/slash/default-commands.ts +190 -0
- package/src/editor/slash/extension.ts +319 -0
- package/src/editor/slash/index.ts +7 -0
- package/src/editor/slash/insertions.ts +26 -0
- package/src/editor/slash/menu.ts +123 -0
- package/src/editor/slash/position.ts +61 -0
- package/src/editor/slash/query.ts +33 -0
- package/src/editor/slash/theme.ts +113 -0
- package/src/editor/slash/types.ts +40 -0
- package/src/editor/table-of-contents/extension.ts +202 -0
- package/src/editor/table-of-contents/extract.ts +53 -0
- package/src/editor/table-of-contents/index.ts +7 -0
- package/src/editor/table-of-contents/panel.ts +83 -0
- package/src/editor/table-of-contents/slug.ts +50 -0
- package/src/editor/table-of-contents/storage.ts +35 -0
- package/src/editor/table-of-contents/theme.ts +153 -0
- package/src/editor/table-of-contents/types.ts +44 -0
- package/src/editor/theme.ts +72 -0
- package/src/editor/utils.ts +176 -0
- package/src/editor/view-plugin.ts +189 -0
- package/src/index.ts +5 -0
- package/src/lib/index.ts +2 -0
- package/src/lib/input-handler.ts +47 -0
- package/src/plugins/code-plugin.theme.ts +545 -0
- package/src/plugins/code-plugin.ts +1892 -0
- package/src/plugins/emoji-plugin.ts +140 -0
- package/src/plugins/heading-plugin.ts +194 -0
- package/src/plugins/hr-plugin.ts +102 -0
- package/src/plugins/html-plugin.ts +353 -0
- package/src/plugins/image-plugin.ts +806 -0
- package/src/plugins/index.ts +71 -0
- package/src/plugins/inline-plugin.ts +311 -0
- package/src/plugins/link-plugin.ts +509 -0
- package/src/plugins/list-plugin.ts +492 -0
- package/src/plugins/math-plugin.ts +526 -0
- package/src/plugins/mermaid-plugin.ts +513 -0
- package/src/plugins/paragraph-plugin.ts +38 -0
- package/src/plugins/quote-plugin.ts +733 -0
- package/src/plugins/table-controls-theme.ts +126 -0
- package/src/plugins/table-controls.ts +423 -0
- package/src/plugins/table-model.ts +661 -0
- package/src/plugins/table-plugin.ts +2111 -0
- package/src/preview/context.ts +45 -0
- package/src/preview/css-generator.ts +64 -0
- package/src/preview/default-renderers.ts +29 -0
- package/src/preview/index.ts +29 -0
- package/src/preview/preview.ts +41 -0
- package/src/preview/renderer.ts +184 -0
- package/src/preview/syntax-theme.ts +112 -0
- package/src/preview/toc.ts +23 -0
- package/src/preview/types.ts +89 -0
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunk7JOEPNEV_cjs = require('../chunk-7JOEPNEV.cjs');
|
|
4
|
+
require('../chunk-MLBEBFHB.cjs');
|
|
5
|
+
require('../chunk-KNDWF2DP.cjs');
|
|
6
|
+
require('../chunk-SWFUKJDO.cjs');
|
|
7
|
+
require('../chunk-WFVCG4LD.cjs');
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
Object.defineProperty(exports, "CODE_COPY_SUCCESS_ICON", {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function () { return chunk7JOEPNEV_cjs.CODE_COPY_SUCCESS_ICON; }
|
|
14
|
+
});
|
|
15
|
+
Object.defineProperty(exports, "CodePlugin", {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return chunk7JOEPNEV_cjs.CodePlugin; }
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports, "EmojiPlugin", {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () { return chunk7JOEPNEV_cjs.EmojiPlugin; }
|
|
22
|
+
});
|
|
23
|
+
Object.defineProperty(exports, "HRPlugin", {
|
|
24
|
+
enumerable: true,
|
|
25
|
+
get: function () { return chunk7JOEPNEV_cjs.HRPlugin; }
|
|
26
|
+
});
|
|
27
|
+
Object.defineProperty(exports, "HTMLPlugin", {
|
|
28
|
+
enumerable: true,
|
|
29
|
+
get: function () { return chunk7JOEPNEV_cjs.HTMLPlugin; }
|
|
30
|
+
});
|
|
31
|
+
Object.defineProperty(exports, "HeadingPlugin", {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
get: function () { return chunk7JOEPNEV_cjs.HeadingPlugin; }
|
|
34
|
+
});
|
|
35
|
+
Object.defineProperty(exports, "ImagePlugin", {
|
|
36
|
+
enumerable: true,
|
|
37
|
+
get: function () { return chunk7JOEPNEV_cjs.ImagePlugin; }
|
|
38
|
+
});
|
|
39
|
+
Object.defineProperty(exports, "InlinePlugin", {
|
|
40
|
+
enumerable: true,
|
|
41
|
+
get: function () { return chunk7JOEPNEV_cjs.InlinePlugin; }
|
|
42
|
+
});
|
|
43
|
+
Object.defineProperty(exports, "LinkPlugin", {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
get: function () { return chunk7JOEPNEV_cjs.LinkPlugin; }
|
|
46
|
+
});
|
|
47
|
+
Object.defineProperty(exports, "ListPlugin", {
|
|
48
|
+
enumerable: true,
|
|
49
|
+
get: function () { return chunk7JOEPNEV_cjs.ListPlugin; }
|
|
50
|
+
});
|
|
51
|
+
Object.defineProperty(exports, "MathPlugin", {
|
|
52
|
+
enumerable: true,
|
|
53
|
+
get: function () { return chunk7JOEPNEV_cjs.MathPlugin; }
|
|
54
|
+
});
|
|
55
|
+
Object.defineProperty(exports, "MermaidPlugin", {
|
|
56
|
+
enumerable: true,
|
|
57
|
+
get: function () { return chunk7JOEPNEV_cjs.MermaidPlugin; }
|
|
58
|
+
});
|
|
59
|
+
Object.defineProperty(exports, "ParagraphPlugin", {
|
|
60
|
+
enumerable: true,
|
|
61
|
+
get: function () { return chunk7JOEPNEV_cjs.ParagraphPlugin; }
|
|
62
|
+
});
|
|
63
|
+
Object.defineProperty(exports, "QuotePlugin", {
|
|
64
|
+
enumerable: true,
|
|
65
|
+
get: function () { return chunk7JOEPNEV_cjs.QuotePlugin; }
|
|
66
|
+
});
|
|
67
|
+
Object.defineProperty(exports, "TablePlugin", {
|
|
68
|
+
enumerable: true,
|
|
69
|
+
get: function () { return chunk7JOEPNEV_cjs.TablePlugin; }
|
|
70
|
+
});
|
|
71
|
+
Object.defineProperty(exports, "allPlugins", {
|
|
72
|
+
enumerable: true,
|
|
73
|
+
get: function () { return chunk7JOEPNEV_cjs.allPlugins; }
|
|
74
|
+
});
|
|
75
|
+
Object.defineProperty(exports, "bindCodeCopyButtons", {
|
|
76
|
+
enumerable: true,
|
|
77
|
+
get: function () { return chunk7JOEPNEV_cjs.bindCodeCopyButtons; }
|
|
78
|
+
});
|
|
79
|
+
Object.defineProperty(exports, "copyCodeTextToClipboard", {
|
|
80
|
+
enumerable: true,
|
|
81
|
+
get: function () { return chunk7JOEPNEV_cjs.copyCodeTextToClipboard; }
|
|
82
|
+
});
|
|
83
|
+
Object.defineProperty(exports, "decodeCodeCopyPayload", {
|
|
84
|
+
enumerable: true,
|
|
85
|
+
get: function () { return chunk7JOEPNEV_cjs.decodeCodeCopyPayload; }
|
|
86
|
+
});
|
|
87
|
+
Object.defineProperty(exports, "encodeCodeCopyPayload", {
|
|
88
|
+
enumerable: true,
|
|
89
|
+
get: function () { return chunk7JOEPNEV_cjs.encodeCodeCopyPayload; }
|
|
90
|
+
});
|
|
91
|
+
Object.defineProperty(exports, "essentialPlugins", {
|
|
92
|
+
enumerable: true,
|
|
93
|
+
get: function () { return chunk7JOEPNEV_cjs.essentialPlugins; }
|
|
94
|
+
});
|
|
95
|
+
Object.defineProperty(exports, "resolveCalloutTitleInputTarget", {
|
|
96
|
+
enumerable: true,
|
|
97
|
+
get: function () { return chunk7JOEPNEV_cjs.resolveCalloutTitleInputTarget; }
|
|
98
|
+
});
|
|
99
|
+
Object.defineProperty(exports, "resolveCalloutTypeChange", {
|
|
100
|
+
enumerable: true,
|
|
101
|
+
get: function () { return chunk7JOEPNEV_cjs.resolveCalloutTypeChange; }
|
|
102
|
+
});
|
|
103
|
+
//# sourceMappingURL=index.cjs.map
|
|
104
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.cjs"}
|