pub fn lcfirst(s: &str) -> String
First character lowercase (Unicode-aware).
use oxios_markdown::parser::lcfirst; assert_eq!(lcfirst("Hello"), "hello"); assert_eq!(lcfirst(""), "");