{{!
  EntityExaminer composite highlighter (tooltip-bearing indicator element).

  The data-* payload fields below sit inside single-quoted HTML attributes,
  so they are HTML-escaped here; the consumer therefore no longer needs to
  apply htmlspecialchars() itself.

  Required data:
  - severity: string (escaped) - Severity suffix for the icon class
  - has_deferred: string (escaped) - Deferred flag
  - subject: string (escaped) - Subject page hash
  - dir: string (escaped) - Text direction
  - uselang: string (escaped) - Interface language code
  - count: string (escaped) - Issue count
  - data-options: string (escaped) - Options payload
  - data-title: string (escaped) - Title payload
  - data-top: string (escaped) - Top content payload
  - data-content: string (escaped) - Main content payload
  - data-bottom: string (escaped) - Bottom content payload
}}
<div class="smw-highlighter smw-icon-entity-examiner-panel-{{severity}}" data-maxWidth="280" data-tooltipclass="square-border-transparent-arrow" data-deferred="{{has_deferred}}" data-subject="{{subject}}" data-dir="{{dir}}" data-uselang="{{uselang}}" data-state="persistent" data-placement="auto" data-animation="fade" data-theme="accordion-popup plain" data-count='{{count}}' data-options='{{data-options}}' data-title='{{data-title}}' data-top='{{data-top}}' data-content='{{data-content}}' data-bottom='{{data-bottom}}'></div>
