@md-plugins/vite-md-plugin 0.1.0-alpha.11 → 0.1.0-alpha.12

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.
Files changed (2) hide show
  1. package/dist/index.mjs +0 -6
  2. package/package.json +13 -13
package/dist/index.mjs CHANGED
@@ -259,7 +259,6 @@ ${pageScripts}
259
259
 
260
260
  const markdownLinkRE = /<MarkdownLink /;
261
261
  const markdownApiRE = /<MarkdownApi /;
262
- const markdownInstallationRE = /<MarkdownInstallation /;
263
262
  const markdownTreeRE = /<MarkdownTree /;
264
263
  function mdParse(code, id, prefix, menu) {
265
264
  const env = {
@@ -272,11 +271,6 @@ function mdParse(code, id, prefix, menu) {
272
271
  if (markdownApiRE.test(code) === true) {
273
272
  env.pageScripts.add("import MarkdownApi from 'src/.q-press/components/MarkdownApi.vue'");
274
273
  }
275
- if (markdownInstallationRE.test(code) === true) {
276
- env.pageScripts.add(
277
- "import MarkdownInstallation from 'src/.q-press/components/MarkdownInstallation.vue'"
278
- );
279
- }
280
274
  if (markdownTreeRE.test(code) === true) {
281
275
  env.pageScripts.add("import MarkdownTree from 'src/.q-press/components/MarkdownTree.vue'");
282
276
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@md-plugins/vite-md-plugin",
3
- "version": "0.1.0-alpha.11",
3
+ "version": "0.1.0-alpha.12",
4
4
  "description": "A very opinionated Vite plugin for @md-plugins.",
5
5
  "keywords": [
6
6
  "markdown-it",
@@ -35,18 +35,18 @@
35
35
  "./dist"
36
36
  ],
37
37
  "dependencies": {
38
- "@md-plugins/md-plugin-codeblocks": "0.1.0-alpha.11",
39
- "@md-plugins/md-plugin-blockquote": "0.1.0-alpha.11",
40
- "@md-plugins/md-plugin-containers": "0.1.0-alpha.11",
41
- "@md-plugins/md-plugin-frontmatter": "0.1.0-alpha.11",
42
- "@md-plugins/md-plugin-headers": "0.1.0-alpha.11",
43
- "@md-plugins/md-plugin-imports": "0.1.0-alpha.11",
44
- "@md-plugins/md-plugin-image": "0.1.0-alpha.11",
45
- "@md-plugins/md-plugin-inlinecode": "0.1.0-alpha.11",
46
- "@md-plugins/md-plugin-link": "0.1.0-alpha.11",
47
- "@md-plugins/md-plugin-table": "0.1.0-alpha.11",
48
- "@md-plugins/shared": "0.1.0-alpha.11",
49
- "@md-plugins/md-plugin-title": "0.1.0-alpha.11"
38
+ "@md-plugins/md-plugin-blockquote": "0.1.0-alpha.12",
39
+ "@md-plugins/md-plugin-frontmatter": "0.1.0-alpha.12",
40
+ "@md-plugins/md-plugin-containers": "0.1.0-alpha.12",
41
+ "@md-plugins/md-plugin-imports": "0.1.0-alpha.12",
42
+ "@md-plugins/md-plugin-headers": "0.1.0-alpha.12",
43
+ "@md-plugins/md-plugin-inlinecode": "0.1.0-alpha.12",
44
+ "@md-plugins/md-plugin-table": "0.1.0-alpha.12",
45
+ "@md-plugins/md-plugin-link": "0.1.0-alpha.12",
46
+ "@md-plugins/md-plugin-title": "0.1.0-alpha.12",
47
+ "@md-plugins/shared": "0.1.0-alpha.12",
48
+ "@md-plugins/md-plugin-image": "0.1.0-alpha.12",
49
+ "@md-plugins/md-plugin-codeblocks": "0.1.0-alpha.12"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/markdown-it": "^14.1.2",