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

6 lines
95 B
Rust
Raw Normal View History

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