I feel like I might be failing to RTFM here but is there a way to get the command line to evaluate code blocks and output them as they appear within Obsidian? E.g. In the Obsidian editor the cli test file shows a table with the results of the dataview query, but on the command line it just shows the text of the file itself. I’ve tried eval but that seems to only parse javascript. Am I missing something obvious?
kirsty@velox ~ % obsidian read file="cli test"
```dataview
TABLE file.frontmatter.author, file.frontmatter.title FROM "directory" WHERE startswith(file.frontmatter.pubDate, "2025") SORT file.frontmatter.pubDate DESC
```