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 hilitecolor;
14pub(crate) mod insertparagraph;
15pub(crate) mod italic;
16pub(crate) mod removeformat;
17pub(crate) mod strikethrough;
18pub(crate) mod stylewithcss;
19pub(crate) mod subscript;
20pub(crate) mod superscript;
21pub(crate) mod underline;
22pub(crate) mod unlink;