This repository has been archived on 2026-07-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
markitect-tool/examples/literate/app.md

16 lines
248 B
Markdown

# Literate App Example
This example explains the helper before showing the application entry point.
```python {#helpers}
def helper():
return "ready"
```
```python {#main tangle="src/app.py"}
<<helpers>>
def main():
return helper()
```