Start work on copying from old ember project
All checks were successful
/ docker (push) Successful in 2m6s
All checks were successful
/ docker (push) Successful in 2m6s
This commit is contained in:
parent
9baf6ad5c7
commit
59373c6380
6 changed files with 112 additions and 83 deletions
10
frontend-vue/src/components/util/FormattedText.vue
Normal file
10
frontend-vue/src/components/util/FormattedText.vue
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue