@changerawr/markdown 1.0.0 → 1.0.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/dist/index.js +0 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +0 -13
- package/dist/index.mjs.map +1 -1
- package/dist/standalone.d.mts +3 -5
- package/dist/standalone.d.ts +3 -5
- package/dist/standalone.js +1426 -75
- package/dist/standalone.js.map +1 -1
- package/dist/standalone.mjs +1383 -75
- package/dist/standalone.mjs.map +1 -1
- package/dist/tailwind/index.d.mts +27 -0
- package/dist/tailwind/index.d.ts +27 -0
- package/dist/tailwind/index.js +224 -0
- package/dist/tailwind/index.js.map +1 -0
- package/dist/tailwind/index.mjs +187 -0
- package/dist/tailwind/index.mjs.map +1 -0
- package/package.json +1 -1
- package/dist/standalone.global.js +0 -193
- package/dist/standalone.global.js.map +0 -1
package/dist/standalone.d.mts
CHANGED
|
@@ -111,8 +111,6 @@ declare class ChangerawrMarkdown {
|
|
|
111
111
|
*/
|
|
112
112
|
private rebuildParserAndRenderer;
|
|
113
113
|
}
|
|
114
|
-
declare function parseMarkdown(content: string): MarkdownToken[];
|
|
115
|
-
declare function renderMarkdown(content: string): string;
|
|
116
114
|
|
|
117
115
|
/**
|
|
118
116
|
* Standalone version of Changerawr Markdown for vanilla JavaScript usage
|
|
@@ -133,9 +131,9 @@ declare const _default: {
|
|
|
133
131
|
renderCumToHtml: typeof renderCumToHtml;
|
|
134
132
|
renderCumToTailwind: typeof renderCumToTailwind;
|
|
135
133
|
renderCumToJson: typeof renderCumToJson;
|
|
134
|
+
render: typeof renderCum;
|
|
135
|
+
parse: typeof parseCum;
|
|
136
136
|
ChangerawrMarkdown: typeof ChangerawrMarkdown;
|
|
137
|
-
parseMarkdown: typeof parseMarkdown;
|
|
138
|
-
renderMarkdown: typeof renderMarkdown;
|
|
139
137
|
};
|
|
140
138
|
|
|
141
|
-
export { ChangerawrMarkdown, type EngineConfig, type Extension, type MarkdownToken, createCumEngine, _default as default, parseCum,
|
|
139
|
+
export { ChangerawrMarkdown, type EngineConfig, type Extension, type MarkdownToken, createCumEngine, _default as default, parseCum, renderCum, renderCumToHtml, renderCumToJson, renderCumToTailwind };
|
package/dist/standalone.d.ts
CHANGED
|
@@ -111,8 +111,6 @@ declare class ChangerawrMarkdown {
|
|
|
111
111
|
*/
|
|
112
112
|
private rebuildParserAndRenderer;
|
|
113
113
|
}
|
|
114
|
-
declare function parseMarkdown(content: string): MarkdownToken[];
|
|
115
|
-
declare function renderMarkdown(content: string): string;
|
|
116
114
|
|
|
117
115
|
/**
|
|
118
116
|
* Standalone version of Changerawr Markdown for vanilla JavaScript usage
|
|
@@ -133,9 +131,9 @@ declare const _default: {
|
|
|
133
131
|
renderCumToHtml: typeof renderCumToHtml;
|
|
134
132
|
renderCumToTailwind: typeof renderCumToTailwind;
|
|
135
133
|
renderCumToJson: typeof renderCumToJson;
|
|
134
|
+
render: typeof renderCum;
|
|
135
|
+
parse: typeof parseCum;
|
|
136
136
|
ChangerawrMarkdown: typeof ChangerawrMarkdown;
|
|
137
|
-
parseMarkdown: typeof parseMarkdown;
|
|
138
|
-
renderMarkdown: typeof renderMarkdown;
|
|
139
137
|
};
|
|
140
138
|
|
|
141
|
-
export { ChangerawrMarkdown, type EngineConfig, type Extension, type MarkdownToken, createCumEngine, _default as default, parseCum,
|
|
139
|
+
export { ChangerawrMarkdown, type EngineConfig, type Extension, type MarkdownToken, createCumEngine, _default as default, parseCum, renderCum, renderCumToHtml, renderCumToJson, renderCumToTailwind };
|