16 lines
262 B
Vue
16 lines
262 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
maintenance: true,
|
|
})
|
|
|
|
const s = '# markdown-it rulezz!\n\n[[toc]]\n## with markdown-it-toc-done-right rulezz even more!'
|
|
</script>
|
|
|
|
<template>
|
|
<markdown-section :content="s" />
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|