fix: remove escaping chars for $

pull/152/head
Matias Capeletto 5 years ago
parent 7c989fcc68
commit 6b030e32cc

@ -2,7 +2,7 @@
In VitePress, some core [computed properties](https://v3.vuejs.org/guide/computed.html#computed-properties) can be used by the default theme or custom themes. Or directly in Markdown pages using vue, for example using `{{ $frontmatter.title }}` to access the title defined in the frontmatter section of the page. In VitePress, some core [computed properties](https://v3.vuejs.org/guide/computed.html#computed-properties) can be used by the default theme or custom themes. Or directly in Markdown pages using vue, for example using `{{ $frontmatter.title }}` to access the title defined in the frontmatter section of the page.
## \$site ## $site
This is the `$site` value of the site youre currently reading: This is the `$site` value of the site youre currently reading:
@ -18,7 +18,7 @@ This is the `$site` value of the site youre currently reading:
} }
``` ```
## \$page ## $page
This is the `$page` value of the page youre currently reading: This is the `$page` value of the page youre currently reading:
@ -44,9 +44,9 @@ This is the `$page` value of the page youre currently reading:
} }
``` ```
## \$frontmatter ## $frontmatter
Reference of [\$page](#page).frontmatter. Reference of [$page](#page).frontmatter.
```json ```json
{ {
@ -55,15 +55,15 @@ Reference of [\$page](#page).frontmatter.
} }
``` ```
## \$title ## $title
Value of the `<title>` label used for the current page. Value of the `<title>` label used for the current page.
## \$description ## $description
The content value of the `<meta name= "description" content= "...">` for the current page. The content value of the `<meta name= "description" content= "...">` for the current page.
## \$themeConfig ## $themeConfig
Refers to `$site.themeConfig`. Refers to `$site.themeConfig`.

Loading…
Cancel
Save