Some progress on porting frontend
Some checks failed
/ docker (push) Has been cancelled

This commit is contained in:
Melody Becker 2025-07-10 20:23:59 +02:00
parent 59373c6380
commit 6515bda730
Signed by: mstar
SSH key fingerprint: SHA256:vkXfS9FG2pVNVfvDrzd1VW9n8VJzqqdKQGljxxX8uK8
18 changed files with 728 additions and 39 deletions

View file

@ -1,5 +1,4 @@
<script setup lang="ts">
import { defineProps } from "vue"
const props = defineProps<{
rawText: string // Raw text (already pre-transformed by server into Linstrom format)
}>()
@ -7,4 +6,6 @@ import { defineProps } from "vue"
// 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>
<template>
<p>{{props.rawText}}</p>
</template>