Anki/ts/editor/editor-toolbar/RichTextClozeButtons.svelte
Damien Elmes 9c733848b8 Revert "Revert "Preserve HTML formatting inside clozes (#3038)""
This reverts commit e911b4b69a.

Trying again now that 24.04 is out.
2024-03-31 15:55:30 +07:00

23 lines
741 B
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
import { wrapClozeInternal } from "@tslib/wrap";
import ClozeButtons from "../ClozeButtons.svelte";
import { context as noteEditorContext } from "../NoteEditor.svelte";
import type { RichTextInputAPI } from "../rich-text-input";
const { focusedInput } = noteEditorContext.get();
$: richTextAPI = $focusedInput as RichTextInputAPI;
async function onCloze({ detail }): Promise<void> {
const richText = await richTextAPI.element;
const { n } = detail;
wrapClozeInternal(richText, n);
}
</script>
<ClozeButtons on:cloze={onCloze} />