penmanship 0.1.0

A Unicode character lookup library for converting text patterns to Unicode characters
Documentation
//! Unicode character category mappings.
//!
//! Each module contains a static perfect hash map for its category.

/// Punctuation and typography mappings.
#[cfg(feature = "punctuation")]
pub mod punctuation;

/// Mathematical operators and symbols.
#[cfg(feature = "math")]
pub mod math;

/// Greek letter mappings.
#[cfg(feature = "greek")]
pub mod greek;

/// Fraction character mappings.
#[cfg(feature = "fractions")]
pub mod fractions;

/// Currency symbol mappings.
#[cfg(feature = "currency")]
pub mod currency;

/// Miscellaneous symbol mappings.
#[cfg(feature = "symbols")]
pub mod symbols;

/// Superscript character mappings.
#[cfg(feature = "superscripts")]
pub mod superscripts;

/// Subscript character mappings.
#[cfg(feature = "subscripts")]
pub mod subscripts;

/// HTML named character reference mappings.
#[cfg(feature = "html")]
pub mod html;

/// Emoji shortcode mappings.
#[cfg(feature = "emoji")]
pub mod emoji;