attrs property

Map<String, String> attrs
final

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 (&amp;, &#39;, etc.) are decoded by the parser before they reach this map.

Implementation

final Map<String, String> attrs;