Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/authoring/variables.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,13 @@ extract the first in the array of authors:
{{< meta author.1 >}}
```

To reference a field that contains a dot (`.`), escape the dot with a double backslash (`\\`). For example, to get `field.with.dots`:


``` {.markdown shortcodes="false"}
{{< meta field\\.with\\.dots >}}
```

## env {#env}

The `env` shortcode enables you to read values from environment variables. For example:
Expand Down