# System Variables

Use the browser console to view the following system variables.

  • $site
  • $themeConfig

$site and $themeConfig values can be used in markdown content, inside Vue elements such as router-link (expressed as :to="$themeConfig.var"), and inside HTML elements such as img. They will not work inside markdown elements such as links and images.

This will not work:

[Link]({{$themeConfig.latestVersions.airnode}})
![Image]({{$themeConfig.imagePath}})
1
2

This will work:

(Airnode latest version: /airnode/v0.10/ )

<router-link :to="$themeConfig.latestVersions.airnode">
    {{$themeConfig.latestVersions.airnode}}
</router-link>
1
2
3

HTML image

<img :src="$themeConfig.imagePath" />
1
Last Updated: 8/9/2022, 2:28:25 PM