I\'m creating a form using the form builder in Symfony. I am adding an attribute into the twig file for my checkboxes which contains an ampersand and pound sign, Symfony is
Probably what you need is the raw tag or filter. Also take a look at the autoescape tag.
raw
To turn autoescaping off globally, set the autoescape option to false in config.yml:
autoescape
false
config.yml
twig: # ... autoescape: false