Published Online Content

TABLE 
    round(file.size / 1024, 2) + " KB" AS "Size",
    length(file.text) AS "Words",
    file.mtime AS "Modified"
FROM #online
SORT file.mtime DESC

I’ve created a new file called published.md with:

  1. An H1 header describing the content
  2. The Dataview query that will generate a table of all #online tagged files
  3. The same columns and sorting as previously discussed

The table will automatically populate when viewed in Obsidian with the Dataview plugin installed.