From 2bea49bce374233f15ef3633c36e08a84a584586 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Thu, 10 Jul 2025 16:07:53 -0400 Subject: [PATCH] Remove plugin docs and fix sidebar arrow alignment --- assets/theme.css | 2 ++ docs/content/03-customization/plugins.md | 13 ------------- 2 files changed, 2 insertions(+), 13 deletions(-) delete mode 100644 docs/content/03-customization/plugins.md diff --git a/assets/theme.css b/assets/theme.css index bf1aea0..6763de0 100644 --- a/assets/theme.css +++ b/assets/theme.css @@ -73,6 +73,8 @@ body { list-style: none; cursor: pointer; position: relative; + display: flex; + align-items: center; } .nav-section summary::-webkit-details-marker { display: none; } .nav-section summary::before { diff --git a/docs/content/03-customization/plugins.md b/docs/content/03-customization/plugins.md deleted file mode 100644 index f23d6b4..0000000 --- a/docs/content/03-customization/plugins.md +++ /dev/null @@ -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' }; - } -}; -```