Start work on copying from old ember project
All checks were successful
/ docker (push) Successful in 2m6s

This commit is contained in:
Melody Becker 2025-07-08 18:31:42 +02:00
parent 9baf6ad5c7
commit 59373c6380
6 changed files with 112 additions and 83 deletions

View file

@ -0,0 +1,10 @@
<script setup lang="ts">
import { defineProps } from "vue"
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>
<p>{{props.rawText}}</p>