Installation
The quickest way to get started on Linux and macOS is the one-line installer:
curl -sL https://ela.st/docs-builder-install | sh
On Windows, run this in PowerShell:
iex (New-Object System.Net.WebClient).DownloadString('https://ela.st/docs-builder-install-win')
Both scripts download the latest release binary and add it to your system PATH.
Download the binary directly from the Releases page, extract it, and place it somewhere on your PATH.
To build from source, see the docs-builder repository.
docs-builder --version
docs-builder ships with built-in tab completion for subcommands, namespaces, and flags. Run the following once to install completions for your shell, then open a new terminal session.
Add to ~/.bashrc:
eval "$(docs-builder __completion bash)"
Add to ~/.zshrc:
source <(docs-builder __completion zsh)
mkdir -p ~/.config/fish/completions
docs-builder __completion fish > ~/.config/fish/completions/docs-builder.fish
Requires Fish 3.4 or later.