Unified

This is the default built-in transformer.

import { transformer } from "svelte-in-markdown/transformers/unified"

svelteInMarkdownPreprocess({
    onTransform: async (options, config) => {
        return await transformer(options, config, {
            // Your options here!
        })
    },
}),
Return to top