@md-plugins/md-plugin-codeblocks 0.1.0-beta.12 → 0.1.0-beta.14
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 +9 -2
- package/dist/index.mjs +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -40,8 +40,8 @@ md.use(codeblocksPlugin, {
|
|
|
40
40
|
copyButtonComponent: '<MarkdownCopyButton',
|
|
41
41
|
preClass: 'markdown-code',
|
|
42
42
|
pageScripts: [
|
|
43
|
-
"import MarkdownPrerender from '
|
|
44
|
-
"import MarkdownCopyButton from '
|
|
43
|
+
"import MarkdownPrerender from '@/.q-press/components/MarkdownPrerender'",
|
|
44
|
+
"import MarkdownCopyButton from '@/.q-press/components/MarkdownCopyButton.vue'",
|
|
45
45
|
],
|
|
46
46
|
})
|
|
47
47
|
```
|
|
@@ -179,6 +179,13 @@ pnpm test
|
|
|
179
179
|
|
|
180
180
|
In case this README falls out of date, please refer to the [documentation](https://md-plugins.netlify.app/md-plugins/codeblocks/overview) for the latest information.
|
|
181
181
|
|
|
182
|
+
## Support
|
|
183
|
+
|
|
184
|
+
If md-plugin-codeblocks is useful in your workflow and you want to support ongoing maintenance:
|
|
185
|
+
|
|
186
|
+
GitHub Sponsors: https://github.com/sponsors/hawkeye64
|
|
187
|
+
PayPal: https://paypal.me/hawkeye64
|
|
188
|
+
|
|
182
189
|
## License
|
|
183
190
|
|
|
184
191
|
This project is licensed under the MIT License. See the [LICENSE](LICENSE.md) file for details.
|
package/dist/index.mjs
CHANGED
|
@@ -32,8 +32,8 @@ const DEFAULT_CODEBLOCK_PLUGIN_OPTIONS = {
|
|
|
32
32
|
tabPanelTagName: "q-tab-panel",
|
|
33
33
|
tabPanelTagClass: "q-pa-none",
|
|
34
34
|
pageScripts: [
|
|
35
|
-
"import MarkdownPrerender from '
|
|
36
|
-
"import MarkdownCopyButton from '
|
|
35
|
+
"import MarkdownPrerender from '@/.q-press/components/MarkdownPrerender'",
|
|
36
|
+
"import MarkdownCopyButton from '@/.q-press/components/MarkdownCopyButton.vue'"
|
|
37
37
|
],
|
|
38
38
|
langList: defaultLangList
|
|
39
39
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@md-plugins/md-plugin-codeblocks",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.14",
|
|
4
4
|
"description": "A markdown-it plugin for code blocks.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown-it",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@types/prismjs": "^1.26.6",
|
|
41
41
|
"markdown-it": "^14.2.0",
|
|
42
42
|
"prismjs": "^1.30.0",
|
|
43
|
-
"@md-plugins/shared": "0.1.0-beta.
|
|
43
|
+
"@md-plugins/shared": "0.1.0-beta.14"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"markdown-it": "^14.2.0",
|