Are you interested in tools that let you test code in Markdown files?
I suspect it’s a niche but an important one for tech writers—e.g.: It took me a lot of work to test all code examples in my books (*) automatically but it was more than worth it! I detected many issues.
(*) https://exploringjs.com
Anonymous poll
Poll
Very interested
7
0%
Somewhat interested
9
0%
Not interested
0 people voted. 1
0%
Voting ended 26 February at 18:42.
@rauschma Not a niche if you think about how jupyter notebooks are essentially executable code in a file that mixes markdown and code. If you start writing a lot of code in code blocks in markdown, pretty soon you need the entire tool chain to support it (formatters, linters, run-as-script, import library from code block, test running, etc).
Anyhow at least 3 projects in python doing this: https://github.com/matthewdeanmartin/markmodule?tab=readme-ov-file#markdown-is-a-hammer-everything-is-a-nail
@rauschma Not a niche if you think about how jupyter notebooks are essentially executable code in a file that mixes markdown and code. If you start writing a lot of code in code blocks in markdown, pretty soon you need the entire tool chain to support it (formatters, linters, run-as-script, import library from code block, test running, etc).