Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Markdown justfiles

If the argument to --justfile ends in .md, just extracts the contents of unindented just fenced code blocks and writes them to a justfile in a temporary directory1.53.0:

# Project

Build the project:

```just
build:
  echo Building…
```
$ just --justfile README.md build
echo Building…
Building…