{# htmlElement (use with caution - no escaping)
 @param {string} lang The language used. Can be 'en','el'. Optional. 
 @param {object} text The text. Will not escape text, Example `{en:"Content",el:"Περιεχομένο"}` 
 @returns html Elements with sanitzed html 
#}
{% macro htmlElement(params) -%}
{# text is mandatory #}
{%- if params.text -%}
    {#- Import localizer from utilities -#}
    {%- from "../utilities/govcyUtilities.njk" import govcyLocalizeContent -%}
    {{ govcyLocalizeContent(params.text, params.lang, true) }}    
{%- endif -%}
{%- endmacro %}