답변:
원시 키워드 ( http://twig.sensiolabs.org/doc/api.html#escaper-extension)를 사용하십시오.
{{ word | raw }}
변수가 필요하지 않은 경우
translations / messages.en.yaml에 텍스트를 정의 할 수 있습니다 .
CiteExampleHtmlCode: "<b> my static text </b>"
그런 다음 twig :
templates / about / index.html.twig 와 함께 사용
… {{ 'CiteExampleHtmlCode' }}
하거나 나와 같은 다중 언어가 필요한 경우 :
… {{ 'CiteExampleHtmlCode' | trans }}
번역 사용에 대한 자세한 내용은 https://symfony.com/doc/current/translation.html 을 살펴보십시오 .
raw
필요 하지 않으며 저장된 값을 사람이 읽을 수 있습니다!