sandros94 / nuxt-markdown-render

A Nuxt wrapper for the popular markdown-it.
https://www.npmjs.com/package/nuxt-markdown-render
MIT License
7 stars 1 forks source link

bug: `vueRuntimeCompiler` compiles code blocks #14

Open sandros94 opened 7 months ago

sandros94 commented 7 months ago
<script setup>
const md = ref(`# Nuxt module playground!

Welcome to the example of <a href="https://github.com/sandros94/nuxt-markdown-render" target="_blank">nuxt-markdown-render</a>.

This should render
<TestComponent/>

This should not
\`\`\`vue
<TestComponent/>
\`\`\`
`)
</script>