Entangled: Literate Programming¶
| Status | Active |
| Repo | pysprings/lightning-talks (entangled) |
Overview¶
A demonstration of Entangled, a tool for literate programming — writing code inside narrative markdown documents. The markdown is the source of truth; Python files are automatically generated ("tangled") from it.
Key Concepts¶
- Literate programming — Code embedded in explanatory prose
- Named code blocks —
{.python #identifier file=path/to/file}syntax - Noweb references —
<<reference>>for composing code from named blocks - Bidirectional sync — Tangle (markdown → Python) and Stitch (Python → markdown)
- Watch mode —
entangled watchfor live sync during development
How It Works¶
You write markdown with annotated code blocks:
Entangled assembles the final Python file from these blocks, maintaining source mappings back to the markdown.
Used In¶
- RLM Project — The entire presentation is literate-programmed with Entangled
Further Reading¶
- Entangled documentation
- CONVENTIONS.md — PySprings conventions for Entangled syntax