this repo has no description
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 8 lines 246 B view raw
1pub fn get_emoji(emoji: &str) -> String { 2 if emoji.starts_with(":") && emoji.ends_with(":") { 3 let unicode = emojis::get_by_shortcode(emoji.trim_matches(':')).unwrap(); 4 return unicode.as_str().into(); 5 } 6 7 emoji.into() 8}