11 lines
403 B
Vue
11 lines
403 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
rawText: string // Raw text (already pre-transformed by server into Linstrom format)
|
|
}>()
|
|
// TODO: Start figuring out how to format this stuff.
|
|
// Probably something akin to the treeificator. Marshal text into tree first,
|
|
// then adjust tree nodes to types that unmarshal into html
|
|
</script>
|
|
<template>
|
|
<p>{{props.rawText}}</p>
|
|
</template>
|