Merge pull request #34 from PR0M3TH3AN/codex/remove-plugin-references-from-documentation

Remove plugin docs and adjust sidebar arrows
This commit is contained in:
thePR0M3TH3AN
2025-07-10 16:08:07 -04:00
committed by GitHub
2 changed files with 2 additions and 13 deletions

View File

@@ -73,6 +73,8 @@ body {
list-style: none; list-style: none;
cursor: pointer; cursor: pointer;
position: relative; position: relative;
display: flex;
align-items: center;
} }
.nav-section summary::-webkit-details-marker { display: none; } .nav-section summary::-webkit-details-marker { display: none; }
.nav-section summary::before { .nav-section summary::before {

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 -->' };
}
};
```