jonschlinkert / sublime-markdown-extended

Top 100 Sublime Text plugin! Markdown syntax highlighter for Sublime Text, with extended support for GFM fenced code blocks, with language-specific syntax highlighting. YAML Front Matter. Works with ST2/ST3. Goes great with Assemble.
https://github.com/jonschlinkert
MIT License
660 stars 96 forks source link

Syntax request: Vue #198

Open privatenumber opened 4 years ago

privatenumber commented 4 years ago

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>