Intrigued by the possibilities of combining #markdown , #csv , and #scripting
VS Code on Windows: run a Python file that outputs markdown in the debugger and pipe the output to a file. You get a Byte-Order Marker (BOM) at the beginning. Open the file in Obsidian and it doesn't render correctly. Solution: instead of piping the file directly, use some Powershell magic:
"args": ["|", "Out-File", "-Encoding", "UTF8NoBOM", "myfile.md"]
Brought to you by Obscure-Windows-Problems-r-Us.