embed

Macro embed 

Source
macro_rules! embed {
    ($($all:tt)*) => { ... };
}
Expand description

ยงExample

use rtml::*;

assert_eq!(
    embed![.src="example.swf"].render(),
    "<embed src=\"example.swf\">"
);

assert_eq!(
    embed![.src="example.swf", ._type="application/x-shockwave-flash", .width="400", .height="300"].render(),
    "<embed src=\"example.swf\" type=\"application/x-shockwave-flash\" width=\"400\" height=\"300\">"
);