Hey wanna see a stupid #Nushell trick?
Making markdown sections and tables for the schema of a SQLite database (which I then paste into #TangentNotes to be published with #Nanoc)
```
(
open markdown.db
| schema
| get tables
| transpose name info
| each { |t| $"#### ($t.name)\n\n($t.info.columns | to md)\n" }
| to text
)
```
EDIT: removed a couple unnecessary steps in my pipe.