···8899const source = shallowRef<string>(`*begs @bsky.app to add **__Markdown formatting__***`);
10101111+// Bluesky could've rolled with something like `simple-markdown` here where they
1212+// could easily customize what kind of Markdown rules are allowed, in my case
1313+// though I'm rolling my own.
1114const tokens = computed(() => tokenize(source.value));
1215const richtext = computed(() => tokenToRichText(tokens.value));
1316</script>