@md-plugins/md-plugin-codeblocks 0.1.0-alpha.5 → 0.1.0-alpha.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/README.md +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -38,8 +38,8 @@ md.use(codeblocksPlugin, {
|
|
|
38
38
|
copyButtonComponent: '<MarkdownCopyButton',
|
|
39
39
|
preClass: 'markdown-code',
|
|
40
40
|
pageScripts: [
|
|
41
|
-
"import MarkdownPrerender from 'src/components/
|
|
42
|
-
"import MarkdownCopyButton from 'src/components/
|
|
41
|
+
"import MarkdownPrerender from 'src/.q-press/components/MarkdownPrerender'",
|
|
42
|
+
"import MarkdownCopyButton from 'src/.q-press/components/MarkdownCopyButton.vue'",
|
|
43
43
|
],
|
|
44
44
|
})
|
|
45
45
|
```
|
package/dist/index.mjs
CHANGED
|
@@ -25,9 +25,9 @@ const codeblocksPlugin = (md, {
|
|
|
25
25
|
tabPanelTagName = "q-tab-panel",
|
|
26
26
|
tabPanelTagClass = "q-pa-none",
|
|
27
27
|
pageScripts = [
|
|
28
|
-
"import MarkdownPrerender from 'src/components/
|
|
28
|
+
"import MarkdownPrerender from 'src/.q-press/components/MarkdownPrerender'",
|
|
29
29
|
// ts file
|
|
30
|
-
"import MarkdownCopyButton from 'src/components/
|
|
30
|
+
"import MarkdownCopyButton from 'src/.q-press/components/MarkdownCopyButton.vue'"
|
|
31
31
|
],
|
|
32
32
|
langList = defaultLangList
|
|
33
33
|
} = {}) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@md-plugins/md-plugin-codeblocks",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.7",
|
|
4
4
|
"description": "A markdown-it plugin for code blocks.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown-it",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"markdown-it": "^14.1.0",
|
|
37
37
|
"prismjs": "^1.29.0",
|
|
38
|
-
"@md-plugins/shared": "0.1.0-alpha.
|
|
38
|
+
"@md-plugins/shared": "0.1.0-alpha.7"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|