Remove plugin docs and fix sidebar arrow alignment

This commit is contained in:
thePR0M3TH3AN
2025-07-10 16:07:53 -04:00
parent b08eff24e0
commit 2bea49bce3
2 changed files with 2 additions and 13 deletions

View File

@@ -1,13 +0,0 @@
# Writing Plugins
Place JavaScript files in the `plugins/` directory. Export hook functions such as `onParseMarkdown` or `onPageRendered` to modify the build process. Hooks receive data objects that you can transform before Archivox writes the final files.
Example:
```js
module.exports = {
onPageRendered: async ({ html }) => {
return { html: html + '\n<!-- custom -->' };
}
};
```