Skip to content

Commit 79c3133

Browse files
authored
Merge pull request #1 from CodingCommunism/feature/ts
Use typescript. Improve plugin. Reduce code, dependencies and package size. Add customize demo-block component option.
2 parents 5e0738c + e75d6ef commit 79c3133

16 files changed

+408
-669
lines changed

README.md

+57-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,60 @@
11
# rollup-plugin-md2vue
22

3-
组件库展示,md 文件转为 vue 文件,将其中 demo 分为组件渲染和代码展示两部分
3+
> Roll markdown to Vue 3 component with Rollup, extract 'demo' and convert it into execution effect and code display.
4+
5+
6+
``` js
7+
import md2vue from 'rollup-plugin-md2vue'
8+
9+
export default {
10+
plugins: [
11+
md2vue(/* options */)
12+
]
13+
}
14+
```
15+
16+
## Options
17+
18+
``` js
19+
export interface Options {
20+
include: string | RegExp | (string | RegExp)[]
21+
exclude: string | RegExp | (string | RegExp)[]
22+
23+
// the path of your custom demo-block component
24+
// e.g. '/src/components/demo-block.vue'
25+
blockComponent: string
26+
}
27+
```
28+
29+
30+
31+
## Question
32+
33+
- Q: No highlight of code?
34+
35+
- Check your dependency, your project must install `hightlight.js`.
36+
- Check init hightlight.js and import its style file. [Use highlight.js in ES6 Modules](https://github.com/highlightjs/highlight.js#es6-modules--import)
37+
38+
- Q: custom demo-block component can't display?
39+
40+
- Your component must have three slot for demo's title(default), display area(name='source'), source code(name='highlight')
41+
42+
```html
43+
<template>
44+
<slot></slot>
45+
<div>
46+
<slot name="source"></slot>
47+
</div>
48+
<div>
49+
<slot name="highlight"></slot>
50+
</div>
51+
</template>
52+
<script>
53+
export default {
54+
name: 'demo-block'
55+
}
56+
</script>
57+
<style>
58+
</style>
59+
```
460

5-
![img](https://raw.githubusercontent.com/liuyu666/picture/master/md-img/md2vue.png)

build/md2vue.js

-297
This file was deleted.

index.js

-1
This file was deleted.

0 commit comments

Comments
 (0)