Function dilla_renderer::engine::set_attribute
source · pub fn set_attribute(
v: Value,
name: String,
value: Option<Value>
) -> Result<Value, Error>
Expand description
Add an HTML attribute to a Seq, which are always treated as Attribute
.
{{ {'id': 'foo'}|set_attribute('href', 'bar') }}
-> href="bar" id="foo"
@todo if value is map, concatenate to strings with space? @todo if name exist, replace? @todo when class or styles, should merge?