Add DocForge documentation site

This commit is contained in:
thePR0M3TH3AN
2025-07-10 12:02:39 -04:00
parent c128e20e68
commit 4d924387ce
12 changed files with 94 additions and 0 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 -->' };
}
};
```