mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00

* Use async function in PlainTextInput * Clean up PlainTextInput * Refactor logic from {Rich,Plain}TextInput into own files * Remove prohibited tags on content.subscribe which also parses the html
13 lines
344 B
Svelte
13 lines
344 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script context="module" lang="ts">
|
|
import { CustomElementArray } from "../editable/decorated";
|
|
|
|
const decoratedElements = new CustomElementArray();
|
|
|
|
export { decoratedElements };
|
|
</script>
|
|
|
|
<slot />
|