Define reusable values in frontmatter and reference them in your markdown.
--- company: name: Acme Corp industry: Manufacturing employees: 121 category: Home ---
# {% $company.name %} Dashboard {% $company.name %} operates in the {% $company.industry %} industry, and has {% $company.employees %} employees.
{% big_value data="demo_daily_orders" title=$company.name value="sum(total_sales)" /%}
{% line_chart data="demo_daily_orders" title="Revenue for {{ $company.name }}" x="date" y="sum(total_sales)" /%}
```sql home_sales select * from demo_daily_orders where category = '{{ $category }}' ```
name: John Doe
age: 30
active: true
colors: [red, green, blue]
company: { name: Acme, industry: Manufacturing }
{% $company.name %} # Acme {% $targets.revenue %} # 1000000 {% $colors[0] %} # red