https://github.com/peter-bread/literate-bash
https://github.com/peter-bread/literate-bash
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/peter-bread/literate-bash
- Owner: peter-bread
- Created: 2025-08-10T17:28:44.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-10T18:17:52.000Z (10 months ago)
- Last Synced: 2025-08-10T20:28:46.872Z (10 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Literate Bash
Very basic literate programming for Bash and Markdown.
Files ending in `.lsh.md` can interpreted as literate Markdown files.
All code must be in code blocks starting with ```bash.
Example:
````md
This is a regular Markdown file.
Below is some bash:
```bash
echo "Hello, World!"
```
````