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