pub fn ucfirst(s: &str) -> String
First character uppercase (Unicode-aware).
use oxios_markdown::parser::ucfirst; assert_eq!(ucfirst("hello"), "Hello"); assert_eq!(ucfirst(""), ""); assert_eq!(ucfirst("über"), "Über");