@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/index.js
CHANGED
|
@@ -2031,19 +2031,6 @@ function renderCumToTailwind(markdown3) {
|
|
|
2031
2031
|
function renderCumToJson(markdown3) {
|
|
2032
2032
|
return parseCum(markdown3);
|
|
2033
2033
|
}
|
|
2034
|
-
if (typeof window !== "undefined") {
|
|
2035
|
-
window.ChangerawrMarkdown = {
|
|
2036
|
-
renderCum,
|
|
2037
|
-
parseCum,
|
|
2038
|
-
createCumEngine,
|
|
2039
|
-
renderCumToHtml,
|
|
2040
|
-
renderCumToTailwind,
|
|
2041
|
-
renderCumToJson,
|
|
2042
|
-
// Legacy aliases
|
|
2043
|
-
render: renderCum,
|
|
2044
|
-
parse: parseCum
|
|
2045
|
-
};
|
|
2046
|
-
}
|
|
2047
2034
|
|
|
2048
2035
|
// src/index.ts
|
|
2049
2036
|
function createEngine(config) {
|