Macro svgmacro::svg [] [src]

macro_rules! svg {
    ($w:expr, ) => { ... };
    ($w:expr, @ $inner:expr; $($rest:tt)*) => { ... };
    ($w:expr, {$e:expr} $($rest:tt)*) => { ... };
    ($w:expr, $e:tt) => { ... };
    ($w:expr, $tag:ident ($( $attr:tt )*) [ $($inner:tt)* ] $($rest:tt)*) => { ... };
    ($w:expr, $tag:ident [ $($inner:tt)* ] $($rest:tt)*) => { ... };
    ($w:expr, $tag:ident ($( $attr:tt )*) $($rest:tt)*) => { ... };
}