Files
packager/rust/src/routing/html.rs

6 lines
97 B
Rust
Raw Normal View History

2023-08-29 21:34:00 +02:00
use maud::{html, Markup};
2023-08-29 21:34:01 +02:00
pub fn concat(a: &Markup, b: &Markup) -> Markup {
2023-08-29 21:34:00 +02:00
html!((a)(b))
}