diff --git a/src/v2/guide/syntax.md b/src/v2/guide/syntax.md index 31034d50c4..8359d1e704 100644 --- a/src/v2/guide/syntax.md +++ b/src/v2/guide/syntax.md @@ -30,7 +30,7 @@ You can also perform one-time interpolations that do not update on data change b ### Raw HTML -The double mustaches interprets the data as plain text, not HTML. In order to output real HTML, you will need to use the `v-html` directive: +The double mustaches interprets the data as plain text, not HTML. In order to output real HTML, you will need to use the [`v-html` directive](../api/#v-html): ``` html

Using mustaches: {{ rawHtml }}

@@ -60,7 +60,7 @@ The contents of the `span` will be replaced with the value of the `rawHtml` prop ### Attributes -Mustaches cannot be used inside HTML attributes. Instead, use a [v-bind directive](../api/#v-bind): +Mustaches cannot be used inside HTML attributes. Instead, use a [`v-bind` directive](../api/#v-bind): ``` html