jonschlinkert/sublime-markdown-extended

Syntax request: Vue

privatenumber opened this issue · 0 comments

Looking for support on syntax highlighting Vue code. It's basically the HTML syntax so likely easy to add.

Supported in Github Markdown too:

<template>
  <div class="hello">Hello World</div>
</template>

<script>
export default {};
</script>

<style scoped>
.hello {
  font-size: 12px;
}
</style>