You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
983 B
29 lines
983 B
3 years ago
|
import { createVueToMarkdownRenderFn } from './vueToMarkdown';
|
||
|
import type { MarkdownOptions } from '../md/markdown/markdown';
|
||
|
import type { Plugin } from 'vite';
|
||
|
import { createMarkdownToVueRenderFn } from '../md/markdownToVue';
|
||
|
|
||
|
interface Options {
|
||
|
root?: string;
|
||
|
markdown?: MarkdownOptions;
|
||
|
}
|
||
|
|
||
|
export default (options: Options = {}): Plugin => {
|
||
|
const { root, markdown } = options;
|
||
|
const vueToMarkdown = createVueToMarkdownRenderFn(root);
|
||
|
const markdownToVue = createMarkdownToVueRenderFn(root, markdown);
|
||
|
return {
|
||
|
name: 'vueToMdToVue',
|
||
|
transform(code, id) {
|
||
|
if (
|
||
|
(id.endsWith('.vue') && id.indexOf('/demo/') > -1 && id.indexOf('index.vue') === -1) ||
|
||
|
id.indexOf('/examples/App.vue') > -1
|
||
|
) {
|
||
|
const res = vueToMarkdown(code, id);
|
||
|
// transform .md files into vueSrc so plugin-vue can handle it
|
||
|
return { code: res.ignore ? res.vueSrc : markdownToVue(res.vueSrc, id).vueSrc, map: null };
|
||
|
}
|
||
|
},
|
||
|
};
|
||
|
};
|