number sections and document sidebar ordering

This commit is contained in:
thePR0M3TH3AN
2025-07-10 15:43:46 -04:00
parent e67416d29b
commit b0bb32da53
13 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
# Customizing Your Site
Site settings live in `config.yaml`. You can change the title, logo, colors, and enable features like analytics or multi-language support.

View File

@@ -0,0 +1,13 @@
# Writing Plugins
Create JavaScript modules in the `plugins/` directory. Export hook functions such as `onParseMarkdown` or `onPageRendered` to modify the build.
Example:
```js
module.exports = {
onPageRendered: async ({ html }) => {
return { html: html + '\n<!-- custom -->' };
}
};
```