mirror of
https://github.com/ankitects/anki.git
synced 2025-11-09 06:07:11 -05:00
* Factor out common code in bold/italic/underline/sub/sup buttons * Update exclusiveNames' states on click * Update exclusiveNames' states on keyboard shortcut
27 lines
740 B
Svelte
27 lines
740 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 * as tr from "@tslib/ftl";
|
|
|
|
import type { MatchType } from "../../domlib/surround";
|
|
import { underlineIcon } from "./icons";
|
|
import TextAttributeButton from "./TextAttributeButton.svelte";
|
|
|
|
function matcher(element: HTMLElement | SVGElement, match: MatchType): void {
|
|
if (element.tagName === "U") {
|
|
return match.remove();
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<TextAttributeButton
|
|
tagName="u"
|
|
{matcher}
|
|
key="underline"
|
|
tooltip={tr.editingUnderlineText()}
|
|
keyCombination="Control+U"
|
|
>
|
|
{@html underlineIcon}
|
|
</TextAttributeButton>
|