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…