Files
archival-university-website/mdsvex.config.cjs
2021-03-30 13:28:52 -04:00

23 lines
469 B
JavaScript

module.exports = {
extensions: [".svx", ".md"],
smartypants: {
dashes: "oldschool",
},
remarkPlugins: [
// [require("remark-github"), {
// // Use your own repository
// repository: "https://github.com/svelte-add/mdsvex.git",
// }],
require("remark-abbr"),
],
rehypePlugins: [
// require("rehype-slug"),
// [require("rehype-autolink-headings"), {
// behavior: "wrap",
// }],
],
layout: {
_: "./src/routes/_centered-prose.svelte",
},
};