mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-04 10:50:55 +01:00
18 lines
433 B
TypeScript
18 lines
433 B
TypeScript
import MarkdownIt from 'markdown-it';
|
|
import Shiki from '@shikijs/markdown-it';
|
|
import { writable } from 'svelte/store';
|
|
|
|
// nasty hack to get around the fact that @shikijs/markdown-it is async
|
|
export const md = writable<MarkdownIt | undefined>(undefined);
|
|
|
|
const it = MarkdownIt({
|
|
html: true
|
|
});
|
|
|
|
Promise.all([Shiki({ theme: 'vesper' })]).then((plugins) => {
|
|
for (const plugin of plugins) {
|
|
it.use(plugin);
|
|
}
|
|
|
|
md.set(it);
|
|
});
|