An open API service indexing awesome lists of open source software.

https://github.com/peter-bread/literate-bash


https://github.com/peter-bread/literate-bash

Last synced: 10 months ago
JSON representation

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!"
```
````