A modern markdown preprocessor for Svelte (WIP). Focused on providing extremely easy markdown usage with minimal config needed.
Inspired by MDsveX!
Note: package still in active development.
pnpm i -D svdown
Add it to your svelte.config.js:
import { markdown } from 'svdown'
/** @type {import('@sveltejs/kit').Config} */
const config = {
extensions: ['.svelte', '.md'],
preprocess: [vitePreprocess(), markdown()],
}