mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-21 13:23:14 +01:00
41 lines
1.0 KiB
Vue
41 lines
1.0 KiB
Vue
<script setup lang="ts">
|
|
import MarkdownIt from "markdown-it";
|
|
import { imgSize } from "@mdit/plugin-img-size";
|
|
import DOMPurify from "dompurify";
|
|
|
|
type Props = {
|
|
source?: string | null;
|
|
};
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
source: null,
|
|
});
|
|
|
|
const md = new MarkdownIt({
|
|
html: true,
|
|
linkify: true,
|
|
typographer: true,
|
|
}).use(imgSize);
|
|
|
|
const raw = computed(() => {
|
|
const html = md.render(props.source || "").replace(/\n$/, ""); // remove trailing newline
|
|
return DOMPurify.sanitize(html);
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
|
<div class="markdown prose text-wrap break-words" v-html="raw" />
|
|
</template>
|
|
|
|
<style scoped>
|
|
* {
|
|
word-wrap: break-word; /*Fix for long words going out of emelent bounds and issue #407 */
|
|
overflow-wrap: break-word; /*Fix for long words going out of emelent bounds and issue #407 */
|
|
}
|
|
.markdown {
|
|
max-width: 100%;
|
|
overflow: hidden; /*Fix for long words going out of emelent bounds and issue #407 */
|
|
}
|
|
</style>
|