BepInEx Documentation
This is the repo for storing documentation related to BepInEx.
View the docs
Contributing
All contributions either via PRs or issues are welcome!
This project uses DocFX to render the API documentation and the articles.
Please refer to DocFX documentation for information on using DocFX-flavoured markdown.
In general, you should be able to update pages with a simple markdown editor.
Testing docs locally
If you want to preview the docs locally, you need .NET 5 or newer installed.
After that, do the following:
- Clone this repo with
git clone
- In the cloned directory, run
git worktree add --checkout common common
A folder namedcommon
should appear. - Write documentation into
api
orarticles
folder. Refer to docfx guide and DFM syntax guide for info on writing the guides using DocFX - Run
common/build.bat --target=Build
to build the docs. The generated docs will appear in_site
folder