attrs property
Attributes parsed from the opening tag.
<a href="/help"> produces {'href': '/help'}. Empty when the
tag had no attributes. Values are always String — character
entities (&, ', etc.) are decoded by the parser
before they reach this map.
Implementation
final Map<String, String> attrs;