[][src]Macro horrorshow::append_html

macro_rules! append_html {
    (@close_tag area) => { ... };
    (@close_tag base) => { ... };
    (@close_tag br) => { ... };
    (@close_tag col) => { ... };
    (@close_tag embed) => { ... };
    (@close_tag hr) => { ... };
    (@close_tag img) => { ... };
    (@close_tag input) => { ... };
    (@close_tag link) => { ... };
    (@close_tag meta) => { ... };
    (@close_tag param) => { ... };
    (@close_tag source) => { ... };
    (@close_tag track) => { ... };
    (@close_tag wbr) => { ... };
    (@close_tag $($tag:ident)-+) => { ... };
    (@stringify_compressed $($tok:tt)*) => { ... };
    (@block_identity $b:block) => { ... };
    (@cont $tmpl:ident, ($s:stmt), $($next:tt)*) => { ... };
    (@write_const $tmpl:ident,) => { ... };
    (@write_const $tmpl:ident, $($p:expr),+) => { ... };
    (@expr_and_block $tmpl:ident, $goto:ident, ($($prefix:tt)*), {$($inner:tt)*} $($next:tt)*) => { ... };
    (@expr_and_block $tmpl:ident, $goto:ident, ($($prefix:tt)*), $first:tt $($next:tt)*) => { ... };
    (@append_attrs $tmpl:ident, ($($p:expr),*), $($($attr:ident)-+):+ ?= $value:expr, $($rest:tt)+) => { ... };
    (@append_attrs $tmpl:ident, ($($p:expr),*), $($($attr:ident)-+):+ ?= $value:expr) => { ... };
    (@append_attrs $tmpl:ident, ($($p:expr),*), $($($attr:ident)-+):+ = $value:expr, $($rest:tt)+) => { ... };
    (@append_attrs $tmpl:ident, ($($p:expr),*), $($($attr:ident)-+):+, $($rest:tt)+) => { ... };
    (@append_attrs $tmpl:ident, ($($p:expr),*), $($($attr:ident)-+):+ = $value:expr) => { ... };
    (@append_attrs $tmpl:ident, ($($p:expr),*), $($($attr:ident)-+):+) => { ... };
    (@parse_if $tmpl:ident, ($($prefix:tt)*), if let $v:pat = $e:tt $($next:tt)+) => { ... };
    (@parse_if $tmpl:ident, ($($prefix:tt)*), if $e:tt $($next:tt)+) => { ... };
    (@parse_if_block $tmpl:ident, ($($prefix:tt)*), else if $($next:tt)*) => { ... };
    (@parse_if_block $tmpl:ident, ($($prefix:tt)*), else {$($inner:tt)*} $($next:tt)*) => { ... };
    (@parse_if_block $tmpl:ident, ($($prefix:tt)*), $($next:tt)*) => { ... };
    ($tmpl:ident, ($($p:expr),*), @ if $($next:tt)+) => { ... };
    ($tmpl:ident, ($($p:expr),*), @ for $v:pat in $e:tt $($next:tt)*) => { ... };
    ($tmpl:ident, ($($p:expr),*), @ while let $v:pat = $e:tt $($next:tt)*) => { ... };
    ($tmpl:ident, ($($p:expr),*), @ while $e:tt $($next:tt)*) => { ... };
    ($tmpl:ident, ($($p:expr),*), : {$($code:tt)*} $($next:tt)*) => { ... };
    ($tmpl:ident, ($($p:expr),*), : $code:expr; $($next:tt)* ) => { ... };
    ($tmpl:ident, ($($p:expr),*), : $code:expr ) => { ... };
    ($tmpl:ident, ($($p:expr),*), |$var:ident| {$($code:tt)*} $($next:tt)*) => { ... };
    ($tmpl:ident, ($($p:expr),*), |mut $var:ident| {$($code:tt)*} $($next:tt)*) => { ... };
    ($tmpl:ident, ($($p:expr),*), |$var:ident| $code:stmt; $($next:tt)* ) => { ... };
    ($tmpl:ident, ($($p:expr),*), |mut $var:ident| $code:stmt; $($next:tt)* ) => { ... };
    ($tmpl:ident, ($($p:expr),*), |$var:ident| $code:stmt ) => { ... };
    ($tmpl:ident, ($($p:expr),*), |mut $var:ident| $code:stmt ) => { ... };
    ($tmpl:ident, ($($p:expr),*), $($tag:ident)-+($($attrs:tt)+) { $($children:tt)* } $($next:tt)* ) => { ... };
    ($tmpl:ident, ($($p:expr),*), $($tag:ident)-+($($attr:tt)+) : $e:expr; $($next:tt)* ) => { ... };
    ($tmpl:ident, ($($p:expr),*), $($tag:ident)-+($($attr:tt)+) : $e:expr) => { ... };
    ($tmpl:ident, ($($p:expr),*), $($tag:ident)-+($($attr:tt)+) : {$($code:tt)*} $($next:tt)* ) => { ... };
    ($tmpl:ident, ($($p:expr),*), $($tag:ident)-+($($attrs:tt)+); $($next:tt)*) => { ... };
    ($tmpl:ident, ($($p:expr),*), $($tag:ident)-+($($attrs:tt)+)) => { ... };
    ($tmpl:ident, ($($p:expr),*), $($tag:ident)-+ { $($children:tt)* } $($next:tt)* ) => { ... };
    ($tmpl:ident, ($($p:expr),*), $($tag:ident)-+ : $e:expr; $($next:tt)* ) => { ... };
    ($tmpl:ident, ($($p:expr),*), $($tag:ident)-+ : {$($code:tt)*} $($next:tt)* ) => { ... };
    ($tmpl:ident, ($($p:expr),*), $($tag:ident)-+; $($next:tt)*) => { ... };
    ($tmpl:ident, ($($p:expr),*), $($tag:ident)-+ : $e:expr) => { ... };
    ($tmpl:ident, ($($p:expr),*), $($tag:ident)-+) => { ... };
    ($tmpl:ident, ($($p:expr),*),) => { ... };
    ($tmpl:ident, ($($p:expr),*), $t:tt $($tr:tt)*) => { ... };
}

Append html to the current template. Don't call this manually.