6 lines
97 B
Rust
6 lines
97 B
Rust
use maud::{html, Markup};
|
|
|
|
pub fn concat(a: &Markup, b: &Markup) -> Markup {
|
|
html!((a)(b))
|
|
}
|