macro_rules! link { ($e:expr, $f:path) => { ... }; ($e:expr) => { ... }; }
Create a clickable link Span.
Span
$e
$f
let link1 = link!("Click me", MyPage); let link2 = link!("Just a link");