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.

@see https://git.drupalcode.org/project/drupal/-/blob/11.x/core/lib/Drupal/Core/Template/Attribute.php#L119

{{ {'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?