remons-render-markdown 1.0.6 → 1.0.8
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 +9 -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
|
|
@@ -28083,6 +28083,13 @@ var g_ = /* @__PURE__ */ he({
|
|
|
28083
28083
|
title: "复制",
|
|
28084
28084
|
description: "点击此处您可复制 markdown 源码"
|
|
28085
28085
|
}
|
|
28086
|
+
},
|
|
28087
|
+
{
|
|
28088
|
+
element: ".docList-menu-print",
|
|
28089
|
+
popover: {
|
|
28090
|
+
title: "打印",
|
|
28091
|
+
description: "点击此处您可跳转至打印页面,输出为PDF"
|
|
28092
|
+
}
|
|
28086
28093
|
}
|
|
28087
28094
|
]
|
|
28088
28095
|
},
|
package/package.json
CHANGED