Syntax highlighting for .hsml files and <template lang="hsml"> in Vue SFCs
Diagnostics, hover, and formatting via the hsml language server
Auto-download of the hsml binary from GitHub releases
Comment toggling (// line comments)
Bracket matching and auto-closing pairs
HSML syntax at a glance
// Tags (div is the default when only class/id is used)
h1 Hello World
.container
.card Hello
// Classes and IDs
h1#title.text-red.font-bold Hello
// Attributes
img(src="/photo.jpg" alt="A photo")
a(href="https://example.com" target="_blank") Link
// Multiline attributes
button(
@click="handleClick"
:disabled="loading"
class="btn btn-primary"
) Submit
// Vue directives work as-is
div(v-if="show")
ul
li(v-for="item in items" :key="item.id") {{ item.name }}