remons-render-markdown 1.0.6 → 1.0.7
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.mjs +2 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -26235,9 +26235,9 @@ function Gm(e, t) {
|
|
|
26235
26235
|
important: "重要",
|
|
26236
26236
|
caution: "警告"
|
|
26237
26237
|
}, r = e[t];
|
|
26238
|
-
return !r || !r.markup || !n[r.markup] ? "" :
|
|
26238
|
+
return !r || !r.markup || !n[r.markup] ? "" : `<p class="markdown-alert-title">
|
|
26239
26239
|
${n[r.markup]}
|
|
26240
|
-
</p
|
|
26240
|
+
</p>`;
|
|
26241
26241
|
}
|
|
26242
26242
|
//#endregion
|
|
26243
26243
|
//#region src/components/RenderMarkdown/utils/render-markdown/render-tab.ts
|
package/package.json
CHANGED