23 lines
469 B
JavaScript
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",
|
|
},
|
|
};
|