Skip to content

Commit 9ac86f9

Browse files
authored
Add math styling module (#20)
1 parent a6e3991 commit 9ac86f9

File tree

3 files changed

+949
-0
lines changed

3 files changed

+949
-0
lines changed

Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@ readme = "README.md"
99
license = "Apache-2.0"
1010
categories = ["encoding", "text-processing"]
1111
keywords = ["unicode", "symbols"]
12+
13+
[features]
14+
default = ["styling"]
15+
styling = []

src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ pub use self::shared::ModifierSet;
1111

1212
mod shared;
1313

14+
#[cfg(feature = "styling")]
15+
pub mod styling;
16+
1417
/// A module of definitions.
1518
#[derive(Debug, Copy, Clone)]
1619
pub struct Module(&'static [(&'static str, Binding)]);

0 commit comments

Comments
 (0)