@adminforth/markdown 1.10.5 → 1.10.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/build.log +2 -2
- package/custom/MarkdownRenderer.vue +13 -1
- package/dist/custom/MarkdownRenderer.vue +13 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/build.log
CHANGED
|
@@ -14,5 +14,5 @@ custom/tsconfig.json
|
|
|
14
14
|
custom/utils/
|
|
15
15
|
custom/utils/monacoMarkdownToggle.ts
|
|
16
16
|
|
|
17
|
-
sent 45,
|
|
18
|
-
total size is
|
|
17
|
+
sent 45,789 bytes received 180 bytes 91,938.00 bytes/sec
|
|
18
|
+
total size is 45,107 speedup is 0.98
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
2
|
+
<div
|
|
3
|
+
v-html="purifiedHtml"
|
|
4
|
+
class="prose
|
|
5
|
+
prose-p:my-0
|
|
6
|
+
prose-headings:my-0
|
|
7
|
+
prose-ul:my-0
|
|
8
|
+
prose-ol:my-0
|
|
9
|
+
prose-li:my-0
|
|
10
|
+
prose-pre:my-0
|
|
11
|
+
prose-hr:my-1
|
|
12
|
+
leading-tight
|
|
13
|
+
"
|
|
14
|
+
></div>
|
|
3
15
|
</template>
|
|
4
16
|
|
|
5
17
|
<script setup lang="ts">
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
2
|
+
<div
|
|
3
|
+
v-html="purifiedHtml"
|
|
4
|
+
class="prose
|
|
5
|
+
prose-p:my-0
|
|
6
|
+
prose-headings:my-0
|
|
7
|
+
prose-ul:my-0
|
|
8
|
+
prose-ol:my-0
|
|
9
|
+
prose-li:my-0
|
|
10
|
+
prose-pre:my-0
|
|
11
|
+
prose-hr:my-1
|
|
12
|
+
leading-tight
|
|
13
|
+
"
|
|
14
|
+
></div>
|
|
3
15
|
</template>
|
|
4
16
|
|
|
5
17
|
<script setup lang="ts">
|
package/dist/index.js
CHANGED
package/index.ts
CHANGED