Files
web_server/nginx/vue/src/components/quick/Markdown.vue
2026-01-13 12:38:21 +00:00

23 lines
395 B
Vue

<script setup>
import MarkdownIt from "markdown-it";
import { katex } from "@mdit/plugin-katex";
const mdIt = MarkdownIt().use(katex);
//.use(wiki);
const props = defineProps({
source: String,
});
</script>
<template>
<div
v-html="mdIt.render(props.source)"
class="flex-col center-content"
></div>
</template>
<style>
@import "katex/dist/katex.min.css";
</style>