rehuman 0.1.2

Unicode-safe text cleaning & typographic normalization for Rust
Documentation
# Example configuration for rehuman CLI.
# Copy this file to:
#   Linux:   ~/.config/rehuman/config.toml
#   macOS:   ~/Library/Application Support/rehuman/config.toml
#   Windows: %APPDATA%\rehuman\config.toml

version = 1
[options]
keyboard_only = true
extended_keyboard = false
emoji_policy = "drop" # "drop" or "keep"
non_ascii_policy = "transliterate" # "drop", "fold", "transliterate"
preserve_joiners = false
remove_hidden = true
remove_trailing_whitespace = true
remove_control_chars = true

normalize_spaces = true
normalize_dashes = true
normalize_quotes = true
normalize_other = true

collapse_whitespace = false
line_endings = "auto" # "auto", "lf", "crlf", "cr"
unicode_normalization = "none" # "none", "nfd", "nfc", "nfkd", "nfkc"