BobDocs is the VitePress documentation site for BobDyn, the open-source vehicle simulation framework.
The site focuses on the currently public pages:
- startup and usage guides
- BobLib overview
- BobSim overview
- reference material for metrics and control theory
The old docs/documentation/ tree has been removed. The public docs now live directly under the top-level pages in docs/.
docs/index.md- home pagedocs/startup-guide/index.md- setup and first-run workflowdocs/use-guide/index.md- day-to-day BobSim usagedocs/boblib/index.md- BobLib overviewdocs/bobsim/index.md- BobSim overviewdocs/reference/index.md- reference landing pagedocs/reference/metrics.md- vehicle performance metricsdocs/reference/control-theory.md- control theory referencedocs/.vitepress/config.ts- site navigation, sidebar, and markdown configuration
- VitePress
- Vue 3
- Mermaid diagrams
- MathJax math rendering
- PDF.js embeds for documentation previews
npm install
npm run devOther useful commands:
npm run build
npm run previewMost content is written in Markdown. The main entry points for editing are:
docs/index.mdfor the homepagedocs/startup-guide/index.mdfor setup instructionsdocs/use-guide/index.mdfor workflow guidancedocs/boblib/index.mdanddocs/bobsim/index.mdfor the project overviews
If you need to change navigation or site-wide markdown behavior, edit docs/.vitepress/config.ts.
- The site is centered on BobLib and BobSim rather than the old generated documentation tree.
- Public links should point at the top-level BobLib, BobSim, and Reference pages.
- The docs build is expected to stay clean under
npm run build.