mod emoji;
mod html;
mod table_align;
mod text_align;
mod text_escape;
pub use self::{emoji::*, html::*, table_align::*, text_align::*, text_escape::*};
pub fn capitalize_first_letter(text: impl AsRef<str>) -> String {
let text = text.as_ref();
let mut c = text.chars();
match c.next() {
None => String::new(),
Some(f) => f.to_uppercase().collect::<String>() + c.as_str(),
}
}