It’s currently possible to write the following shortcode to get the version ```lua return { ['version'] = function(args, kwargs, meta) return table.concat(quarto.version, '.') end } ``` ```qmd --- title: "Quarto Playground" format: html shortcodes: - version.lua --- This is a playground for Quarto {{< version >}}. ```` _Originally posted by @mcanouil in https://github.com/quarto-dev/quarto-cli/discussions/11349#discussioncomment-11215849_