Skip to main content

script/dom/execcommand/commands/
mod.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5pub(crate) mod backcolor;
6pub(crate) mod bold;
7pub(crate) mod createlink;
8pub(crate) mod defaultparagraphseparator;
9pub(crate) mod delete;
10pub(crate) mod fontname;
11pub(crate) mod fontsize;
12pub(crate) mod forecolor;
13pub(crate) mod forwarddelete;
14pub(crate) mod hilitecolor;
15pub(crate) mod inserthorizontalrule;
16pub(crate) mod insertimage;
17pub(crate) mod insertparagraph;
18pub(crate) mod italic;
19pub(crate) mod removeformat;
20pub(crate) mod strikethrough;
21pub(crate) mod stylewithcss;
22pub(crate) mod subscript;
23pub(crate) mod superscript;
24pub(crate) mod underline;
25pub(crate) mod unlink;