sublime-markdown-extended icon indicating copy to clipboard operation
sublime-markdown-extended copied to clipboard

Syntax request: Vue

Open privatenumber opened this issue 5 years ago • 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>

privatenumber avatar Apr 10 '20 06:04 privatenumber