Is there a commonly-adopted Markdown extension that supports code fences that denotes and varies the format of output separate from the code? Like I do this a lot:
``` sh
$ echo foo
foo
```
I want something that syntax highlights the shell code and not the output. Similar need for SQL query vs rows returned:
``` sql
SELECT version();
version
-----------------
PostgreSQL 16
```