{{/* anchor props */}} {{/* required: .AnchorTag, .AnchorID, .AnchorClickedEventName, .AnchorContent */}} {{/* optional: .AnchorClass, .AnchorStyle */}} {{/* popover props */}} {{/* required: .PopoverID, PopoverContentIDPrefix, .PopoverContents: [](string|HTML) */}} {{/* optional: .PopoverStyle */}} {{- $dot := . }} {{- $anchorTag := or .AnchorTag "div" }} {{printf "<%s" $anchorTag | rawHTML}} {{if .AnchorID}}id="{{.AnchorID}}"{{end}} {{if .AnchorClass}}class="{{.AnchorClass}}"{{end}} style="anchor-name: --{{.AnchorID}}; {{.AnchorStyle}}" _=" on click set popover to the #{{.PopoverID}} send {{.AnchorClickedEventName}} to #{{.PopoverID}} " {{ rawHTML ">" }} {{ .AnchorContent }} {{printf "%s>" $anchorTag | rawHTML}}