@md-plugins/md-plugin-codeblocks 0.1.0-rc.1 → 0.1.0-rc.3
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.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -60,6 +60,12 @@ declare module '@md-plugins/shared' {
|
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
+
/**
|
|
64
|
+
* Replaces Markdown fenced code blocks with highlighted Q-Press code components.
|
|
65
|
+
*
|
|
66
|
+
* The plugin supports language aliases, tabbed code fences, Shiki highlighting,
|
|
67
|
+
* copy buttons, twoslash hints, line numbers, and add/remove/highlight notation.
|
|
68
|
+
*/
|
|
63
69
|
declare const codeblocksPlugin: PluginWithOptions<CodeblockPluginOptions>;
|
|
64
70
|
|
|
65
71
|
export { codeblocksPlugin };
|
package/dist/index.d.ts
CHANGED
|
@@ -60,6 +60,12 @@ declare module '@md-plugins/shared' {
|
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
+
/**
|
|
64
|
+
* Replaces Markdown fenced code blocks with highlighted Q-Press code components.
|
|
65
|
+
*
|
|
66
|
+
* The plugin supports language aliases, tabbed code fences, Shiki highlighting,
|
|
67
|
+
* copy buttons, twoslash hints, line numbers, and add/remove/highlight notation.
|
|
68
|
+
*/
|
|
63
69
|
declare const codeblocksPlugin: PluginWithOptions<CodeblockPluginOptions>;
|
|
64
70
|
|
|
65
71
|
export { codeblocksPlugin };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@md-plugins/md-plugin-codeblocks",
|
|
3
|
-
"version": "0.1.0-rc.
|
|
3
|
+
"version": "0.1.0-rc.3",
|
|
4
4
|
"description": "A markdown-it plugin for code blocks.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown-it",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/markdown-it": "^14.1.2",
|
|
45
45
|
"markdown-it": "^14.2.0",
|
|
46
|
-
"@md-plugins/shared": "0.1.0-rc.
|
|
46
|
+
"@md-plugins/shared": "0.1.0-rc.3"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"markdown-it": "^14.2.0"
|