I am making my first steps at flask, I'm trying to make custom html tags with wtf-forms
when i use this:
{{form.email(data-trigger="hover")}}
i got this:
jinja2.exceptions.TemplateSyntaxError: expected token ',', got '='
without it everything works:
{{form.email(datatrigger="hover")}}
is there any way to fix it?