mdsh
mdsh copied to clipboard
`$ mdsh` # a markdown shell pre-processor
Just found this interesting project, thanks. It seems close to what I need. I think it would be really nice if mdsh could also support a code block format like...
Hi there! I stumbled across your project while searching for something related to [this other `mdsh` project](https://github.com/bashup/mdsh), and just thought I should mention the possible naming conflict. The mdsh I...
Take the following `in.md` file as an example: ```markdown `$ echo hi` \``` bye \``` ``` After running `mdsh --input in.md --output out.md`, `out.md` looks like the following: ```markdown `$...
Technically this is doable with `> ./somecommand` that writes the image and outputs the markdown link to it. Maybe there is a shorter way to do that...
when running mdsh on a file, it might make sense to insert a comment header to the file that explains how to run mdsh on the file again. If the...
for long-running processes, it might be nice to record the output, and have a "player" to replay it, instead of having it inline in the document. something like [asciinema](https://asciinema.org/)
I think stderr should be included in the output - or at least there should be an option to include it.
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Config Migration Needed - [ ] Select this checkbox to let Renovate create...
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [regex](https://togithub.com/rust-lang/regex) | dependencies | minor | `1.9.5` -> `1.10.4` | ---...
As far as I understand mdsh, it is currently used to (re-)generate markdown snippets. It would be nice if a command could update an existing snippet, so we don't have...