Skip to main content

lucio

Render Markdown templates by executing embedded bash blocks.

Overview

lucio reads a GitHub-flavored Markdown template, executes the fenced bash blocks that opted in, and writes a rendered Markdown file:

$ lucio README.template.md README.md

It is strictly template-to-output, never in-place, and everything that did not opt in passes through byte-for-byte: tabs, trailing spaces, indented fences, tilde fences, HTML comments, and code blocks that merely talk about lucio are all left alone.

The typical use case is documentation that must not go stale: the template holds the commands, the rendered file holds the commands and the output they produced when the file was generated.

Features

  • One trigger syntax, no template language: fenced bash blocks and nothing else
  • Byte-for-byte passthrough of everything that is not a trigger block
  • Source block, captured stdout, and captured stderr, each shown or hidden per block
  • Output merged into the source fence, as a terminal transcript, or kept in a fence of its own
  • Hidden setup blocks, for the commands that prepare the stage but must not appear
  • File inclusion by way of an ordinary cat
  • Expected exit codes, so that a documented failure stays a failure and an undocumented one aborts the run
  • Syntax errors surface before any block is executed
  • AI-generated, Human-reviewed code
  • Type-safe implementation with type hints
  • Comprehensive unit test coverage (100%)

Requirements

  • Python 3.13 or later
  • A package/virtual environment manager tool (e.g., micromamba, conda, uv, etc.)
  • bash, available on PATH

Installation

IMPORTANT: the examples in the documentation use micromamba to manage virtual environments; feel free to replace it with your favorite tool (conda, uv, etc.).

From PyPI (Recommended)

lucio is published on PyPI as the same-name package lucio , and this is the recommended way of installing it for most users.

Only the first time: create a virtual environment, activate it, and install the latest release of lucio available on PyPI with pip:

$ micromamba create -n lucio_env python=3.13
$ micromamba activate lucio_env

(lucio_env) $ pip install lucio

From Source

Clone this repository and install from source in a virtual environment:

$ git clone https://github.com/pettarin/lucio
$ cd lucio

$ micromamba create -n lucio_env python=3.13
$ micromamba activate lucio_env

(lucio_env) $ pip install -e .
(lucio_env) $ # or
(lucio_env) $ make install-e-this

You should be able to run:

(lucio_env) $ lucio --version
lucio, version 0.0.1

Usage

Usage: lucio [OPTIONS] INPUT OUTPUT

  Render the Markdown template INPUT into OUTPUT, executing its lucio bash
  blocks.

  The template is rendered in memory and written out only once everything
  succeeded, so a failing block leaves OUTPUT untouched.

Options:
  --version              Show the version and exit.
  --timeout FLOAT RANGE  Per-block execution timeout, in seconds.  [default:
                         120.0; x>0]
  -v, --verbose          Log each executed block and its exit code to stderr.
  -h, --help             Show this message and exit.

Both arguments are required, and they must resolve to different files. The INPUTFILE.template.md / OUTPUTFILE.md naming convention used throughout this documentation is just a convention: lucio does not enforce it.

Everything lucio has to say goes to stderr; its stdout stays empty.

Exit codes

code meaning
0 success: OUTPUT was written
1 OUTPUT could not be written
2 usage error (missing or bad arguments, INPUT and OUTPUT are the same file)
3 template error: syntax error, or INPUT cannot be read or decoded
4 execution error: unexpected exit code, timed-out block, bash not runnable

On any error other than 0, OUTPUT is never opened: a pre-existing OUTPUT is left exactly as it was.

Template syntax

Two fences, and only these two, are processed:

```bash lucio [key=value ...]
```
```bash include
```

The trigger word must be the second token of the info string, and the language must be bash. Anything else is ordinary Markdown: ```bash, ```bash lucioX, ```bash run lucio, ```lucio, and <!-- include FILE.md --> all pass through untouched, as does any trigger fence written inside a longer fence (that is how the examples in this file survive).

bash lucio

The body of the block is executed by bash, and the block is replaced by its source fence and/or what the body printed:

```bash lucio
echo "hello"
```

renders as:

```bash
echo "hello"
hello
```

Note that the info string is reduced to bash in the output, while the body and the closing fence are copied byte-for-byte.

By default the captured output is merged into the source fence, right after the commands that produced it, the way a terminal transcript reads. With merge=False it goes into a separate unlabeled fence instead, one blank line below the source:

```bash
echo "hello"
```

```
hello
```

Either way, stdout comes first and stderr after it, and if the selected streams are empty no output is emitted at all.

Attributes

key values default meaning
command execute execute what to do with the block; the only value in this version
exit any, or an integer between 0 and 255 0 the exit code the block must exit with
merge True, False True put the captured output inside the source fence, rather than in a fence of its own
show_source True, False True emit the source block, as a plain ```bash fence
stderr True, False True include the captured stderr in the output
stdout True, False True include the captured stdout in the output

Attributes are unquoted key=value tokens, separated by whitespace. Booleans are spelled the Python way, True and False, and the case matters: true, TRUE, 1, and "True" are all errors, not silent falsehoods. An unknown key, a repeated key, a malformed token, or an unknown value is an error too.

merge has nothing to do when there is no source fence to merge into (show_source=False) or no output to merge (empty streams, or both stdout=False and stderr=False): in those cases it changes nothing.

A block with show_source=False stdout=False stderr=False renders to nothing: it is a hidden setup block. Blank lines around it are collapsed, so it leaves no trace in the output. Every block runs in the working directory lucio was invoked from, so a hidden block can prepare files for the blocks below it:

```bash lucio show_source=False stdout=False stderr=False
rm -f ./configuration.yaml
```

Each block is executed in its own bash subprocess, with the body passed verbatim and nothing injected into it, so shell state (variables, cd, functions) does not carry over from one block to the next; the filesystem, of course, does.

If a block exits with a code other than the expected one, the whole run is aborted and OUTPUT is not written. Expected failures must declared with exit to prevent that:

```bash lucio exit=1
cat missing_file.txt
```

exit=any accepts whatever return code the block returns.

bash include

The body is executed like any other block, but its stdout is pasted raw, as Markdown, in place of the block: no source fence, no output fence. Its stderr is discarded, and it must exit with 0. Attributes are not allowed.

```bash include
cat CONFIGURATION_FILE.md
```

Newlines and whitespace

  • CRLF line endings in the template are normalized to LF on read; a lone CR is left alone.
  • A captured stream is normalized to end with exactly one newline; a stream holding nothing but newlines counts as empty.
  • The output file ends with exactly one newline (an empty rendered document produces an empty file).
  • Everything else, whitespace included, is copied byte-for-byte.
  • A fence is emitted with as many backticks as needed to wrap the captured output, even if it contains fences of its own. A merged fence grows only when the output demands it; as long as it does not, the closing line of the template is reused byte-for-byte.

Development

Set up a development environment, install the package in editable mode with its development dependencies, and run the whole check suite (tests, linter, and type checker):

$ make micromamba-create-dev
$ micromamba activate lucio_dev

(lucio_dev) $ make install-e-this-dev
(lucio_dev) $ make test

Run make help for the list of the available targets.

License

This project is licensed under the GNU General Public License v3.0 or later (GPLv3+).

See the LICENSE file for details.

Authors

  • Alberto Pettarin (Web)

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lucio-0.0.1.tar.gz (33.6 kB view details)

Uploaded Source

File details

Details for the file lucio-0.0.1.tar.gz.

File metadata

  • Download URL: lucio-0.0.1.tar.gz
  • Upload date:
  • Size: 33.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.15

File hashes

Hashes for lucio-0.0.1.tar.gz
Algorithm Hash digest
SHA256 05a20756e6d3746a9a227c61d4cdb7c4a4271b9eeaf2ef6e1fabd08571c8c19e
MD5 2b9f18cf36bc35b4b488f46f0a212eb2
BLAKE2b-256 26005f5cc0d4a367fe597d81d97725775c53cacb0099273c030bcbc70246707a

See more details on using hashes here.

Release history Release notifications | RSS feed

0.0.8

1 file

0.0.7

1 file

0.0.6

1 file

0.0.5

1 file

0.0.4

1 file

0.0.3

1 file

0.0.2

1 file

This release

0.0.1 This release

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page