Open source, simple, fast documentation generator that turns your markdown files into beautiful docs
npm install -g okidoki
mkdir mydocs && cd mydocs
okidoki init
okidoki generate
npx serve dist
Server running at http://localhost:3000
Write in standard markdown. No proprietary formats.
Full-text search across all your documentation.
Beautiful, responsive themes out of the box.
site:
title: "My API Docs"
description: "Documentation for my API"
theme:
light: "fantasy"
dark: "aqua"
globals:
version: "1.0.0"
api_url: "https://api.example.com"
menu:
- title: "Getting Started"
document: /start.md
- title: "API Reference"
document: /api.md
- title: "Examples"
document: /examples.md