2026-02-05 19:42:00 +01:00

20 lines
325 B
Vue

<template>
<div class="codebox">
<p v-html="content"></p>
</div>
</template>
<script setup lang="ts">
defineProps<{
content: string
}>()
</script>
<style scoped>
.codebox * {
font-family: "Roboto Mono", monospace;
font-optical-sizing: auto;
white-space: preserve;
tab-size: 2;
}
</style>