🚀 meta: initial commit

This commit is contained in:
Jacob Babich
2021-03-30 13:28:52 -04:00
commit 2ac0c9862d
21 changed files with 3439 additions and 0 deletions

22
mdsvex.config.cjs Normal file
View File

@@ -0,0 +1,22 @@
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",
},
};