4 lines
103 B
Rust
4 lines
103 B
Rust
|
pub fn to_html_fragment(text: &String) -> String {
|
||
|
text.clone().to_lowercase().replace(" ", "-")
|
||
|
}
|