unplugin / unplugin-vue-markdown

Compile Markdown to Vue component
MIT License
520 stars 28 forks source link

Markdown transform failed with `<button @click></button>` #1

Closed johnsoncodehk closed 2 years ago

johnsoncodehk commented 2 years ago

Input:

<button @click></button>

Result:

<template><div class="markdown-body"><p>&lt;button @click&gt;</button></p>
</div></template>
<script setup>
const frontmatter = {}
defineExpose({ frontmatter })
</script>

Expected result:

<template><div class="markdown-body"><button @click></button></p>
</div></template>
<script setup>
const frontmatter = {}
defineExpose({ frontmatter })
</script>