If a variable is used in the a bash code block, it won't be interpolated. ````markdown ```bash # This doesn't work install {{ versions.default }} ``` ```yaml # This works version: {{ versions.default }} ``` ```` Example: https://github.com/widgetbook/widgetbook/pull/1751