Sensor with clickable link

Hi all

is it possible to create a sensor with a clickable link?

I have created a sensor with platform template like this

  - platform: template
    sensors:
      addr_giu:
        friendly_name: "Address"
        value_template: "{{ states.sensor.giu.attributes.street }}, {{ states.sensor.giu.attributes.street_number }} - {{ states.sensor.giu.attributes.map_link }}"

and the last attribute is a Google Maps link.

How can I show it and have it clickable?

Thanks

I have a similar question, in that I’d like to make an attribute of a sensor that’s clickable. My thought is to wrap the string in html <a href>...</a> tags to make a link, which the browser will hopefully render correctly.