mirror of
https://github.com/BradNut/skeleton
synced 2025-09-08 17:40:25 +00:00
19 lines
400 B
JavaScript
19 lines
400 B
JavaScript
module.exports = {
|
|
extensions: [".svelte.md", ".md", ".svx"],
|
|
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",
|
|
}],
|
|
],
|
|
};
|