rundoc
rundoc copied to clipboard
A command-line utility that runs code blocks from documentation.
Results
2
rundoc issues
Sort by
recently updated
recently updated
newest added
Hi, I hope all is well. Quarto documents (.qmd) are mixtures of markdown and code blocks. Python code blocks are indicated by ```{python} ``` with curly braces around the python....
leading spaces are stripped with input: ~~~ ```append-file:foo Should be indented two spaces ``` ~~~ execution: ``` rundoc run foo.md cat foo ``` result: ``` Should be indented two spaces...