-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.bashdown
40 lines (24 loc) · 888 Bytes
/
README.bashdown
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# bashdown
A markdown pre-processor for inline bash.
Have you ever written a command line tool and wanted to include it's output
in your documentation?
Then bashdown is for you.
Write your markdown files as usual and include bash code sections as normal
using "```bash".
When you pass this file through bashdown, it will run the code in the
code block and include that output inside the rest of the markdown.
This README.md was generated using bashdown.
Check README.bashdown for the file that's used to generate README.md
This project was inspired by tools like quarto and Rmarkdown, but has
significantly fewer dependencies due to it's much more limited scope.
## Usage
Basic usage is as follows:
```bash
# bashdown README.bashdown > README.md
```
Full usage information can be obtained from the built in help.
```bash
bashdown --help
```
## License
MIT © Mark Sellors