vite-plugin-md-preview
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

vite-plugin-md-preview

基于 vite/vitepress 的 markdown 代码块预览插件。

vite-plugin-md-preview 能将 markdown 文档中带有 preview 标识的 vue 代码块替换为 vue 组件。

示例

安装

安装依赖

npm install vite-plugin-md-preview
# or
pnpm install vite-plugin-md-preview

在 Vitepress 中使用

.vitepress/config.ts 中配置插件

import { defineConfig } from 'vitepress'
import MdPreview from 'vite-plugin-md-preview'

export default defineConfig({
  vite: {
    plugins: [MdPreview()],
  },
})

在 Vite 中使用

vite-plugin-md-preview 依赖 vite-plugin-vue-markdown 的 markdown 解析能力, 所以还需要安装 vite-plugin-vue-markdown

// vite.config.ts
import { defineConfig } from 'vite'
import Vue from '@vitejs/plugin-vue'
import Markdown from 'vite-plugin-vue-markdown'
import MdPreview from 'vite-plugin-md-preview'

const config = defineConfig({
  plugins: [
    Vue({
      include: [/\.vue$/, /\.md$/],
    }),
    Markdown(),
    MdPreview(),
  ],
})

export default config

代码预览标识

给需要预览的 vue 代码块加上 preview 标记。

test.md 文件内容为:

_下方代码块将会被解析为 vue 组件并展示_

```vue preview
<template>我是 vue 模板</template>
```

经过 vite-plugin-md-preview 处理后:

自定义预览组件

如果默认的样式不能满足需求,可以全局注册一个 CodePreview 组件来代替默认组件。

app.component('CodePreview', MyCodePreview)

CodePreview 需要按约定支持如下 propsslot

  • props
    • lang string 代码块的 lang
    • meta string // 代码块的 meta 信息
    • code string // 代码块的原始代码
  • slot
    • default 代码块生成的 vue 组件将会以 slots.default 传递过来
    • code 代码块经过高亮转换为 html 将会以 slots.code 传递过来

示例自定义展示组件:

Readme

Keywords

none

Package Sidebar

Install

npm i vite-plugin-md-preview

Weekly Downloads

1

Version

1.0.2

License

MIT

Unpacked Size

37.2 kB

Total Files

10

Last publish

Collaborators

  • jaskangnpm
  • jaskang