Do people store other markdown projects in #Obsidian vaults? Like does it make sense to put a #Quarto presentation there?
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.