diff --git a/src/lib/Playground/PlaygroundMenu.svelte b/src/lib/Playground/PlaygroundMenu.svelte index cb3ac70e..84f9a699 100644 --- a/src/lib/Playground/PlaygroundMenu.svelte +++ b/src/lib/Playground/PlaygroundMenu.svelte @@ -11,6 +11,7 @@ import { get } from "svelte/store"; import { DataBase, setDatabase, type character } from "src/ts/storage/database"; import PlaygroundImageGen from "./PlaygroundImageGen.svelte"; + import PlaygroundParser from "./PlaygroundParser.svelte"; const playgroundChat = () => { let db = get(DataBase) @@ -75,6 +76,11 @@ }}>

{language.imageGeneration}

+ {:else} {#if $SizeStore.w < 1024} @@ -105,6 +111,9 @@ {#if $PlaygroundStore === 7} {/if} + {#if $PlaygroundStore === 8} + + {/if} {/if} \ No newline at end of file diff --git a/src/lib/Playground/PlaygroundParser.svelte b/src/lib/Playground/PlaygroundParser.svelte new file mode 100644 index 00000000..903b43a3 --- /dev/null +++ b/src/lib/Playground/PlaygroundParser.svelte @@ -0,0 +1,23 @@ + + +

Full Parser

+ +Input + + + +Output HTML + + \ No newline at end of file