feat: more progress

This commit is contained in:
Alexander Daichendt 2022-06-10 18:30:54 +02:00
parent 0cac6145a2
commit 53738961bb
15 changed files with 634 additions and 39 deletions

18
mdsvex.config.js Normal file
View file

@ -0,0 +1,18 @@
import { defineMDSveXConfig as defineConfig } from 'mdsvex';
const config = defineConfig({
layout: {
project: './src/routes/projects/project.layout.svelte',
},
extensions: ['.svelte.md', '.md', '.svx'],
smartypants: {
dashes: 'oldschool',
},
remarkPlugins: [],
rehypePlugins: [],
});
export default config;