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.
Files changed (2) hide show
  1. package/dist/index.mjs +2 -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] ? "" : (console.log(r.markup), `<p class="markdown-alert-title">
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "remons-render-markdown",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "一个基于 React 的 Markdown 渲染组件,支持 GFM(GitHub Flavored Markdown)、代码高亮、Mermaid 图表、Tabs 渲染等功能。",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",