vite-plugin-md-san
v1.0.6
Published
Import markdown as a ES Module which content could be: - raw - HTML - San Component(including markdown code block preview rendered by San)
Downloads
2,317
Readme
vite-plugin-md-san
Import markdown as a ES Module which content could be:
- raw
- HTML
- San Component(including markdown code block preview rendered by San)
Install
npm install vite-plugin-md-san
import {defineConfig} from 'vite'
import mdSan from 'vite-plugin-md-san'
const template = fs.readFileSync(
path.resolve(__dirname, 'xxx/preview.template'),
{encoding: 'utf-8'}
);
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
mdSan({
export: 'component', // 'html' | 'component' | 'raw'
template
})
]
});