# Syntax Highlighting

Vetur supports syntax highlighting for the following languages:

syntax lang required extension
<template> html
<template lang="pug"> pug
<template lang="jade"> pug
<template lang="haml"> haml Better Haml (opens new window) or Ruby Haml (opens new window)
<template lang="slm"> slm Slm Syntax (opens new window)
<template lang="slim"> slim Slim (opens new window)
<style> css
<style lang="postcss"> postcss
<style lang="scss"> scss
<style lang="sass"> sass Sass (opens new window)
<style lang="less"> less
<style lang="stylus"> stylus language-stylus (opens new window)
<style lang="sss"> sss
<script> js
<script lang="ts"> ts
<script lang="coffee"> coffee

Vetur supports syntax highlighting for vue directives (e.g. v-if or :attribute=) and vue interpolations (e.g. {{variable}}).

The supported attribute string literals are ' and ". Vetur does not support the ` backtick literal, as it makes things more complex and there is no observed benefit of using it.

Vetur does not support explicitly adding the default language:

<template lang="html"></template>

<style lang="css"></style>

<script lang="js"></script>
<script lang="javascript"></script>

Preprocessors are also not languages, so <script lang="babel"> would be invalid as well.

# Custom Block

Vetur provides a setting vetur.grammar.customBlocks that defaults to:

  "vetur.grammar.customBlocks": {
    "docs": "md",
    "i18n": "json"
  }

You can

  • Change vetur.grammar.customBlocks, for example:

    "vetur.grammar.customBlocks": {
      "docs": "md",
      "i18n": "json",
      "page-query": "graphql",
      "static-query": "graphql"
    }
    
  • Run the command "Vetur: Generate grammar from vetur.grammar.customBlocks

  • Restart VS Code to get syntax highlighting for custom blocks.

Valid language value for custom blocks:

  • All lang values in the support table.
  • md | yaml | json | php | graphql