macro_rules! paragraphs {
    ( $($x:expr ),* ) => { ... };
}
Expand description

Macro for expanding string arguments into paragraphs

example

use webui::*;

fn page() -> Html {
	html! {
		{paragraphs!(
			"This is the first paragraph.",
			"This is the second paragraph. With multiple sentences."
		)}
	}
}