Prevent escape tags in rich_text prop of a contact

I try to show rich text of a contact but hubl deleting html tags

{% set contact = crm_object(“contact”, 1234567, “firstname,lastname,rich_text” ) %}

{{ contact.rich_text }}

This is the solution:

{% set contact = crm_object(“contact”, 1234567, “firstname,lastname,rich_text”, autoescape = False ) %}