I created a widget that has a field for text as wysiwyg value. When I call up this value $block->getData('field_name') in frontend, I get something like:
<p>Content goes here</p> <ul> <li>Some text</li> <li>Some text 2</li> </ul> While the value should look like this:
Content goes here
- Some text
- Some text 2
How can I add HTML processing to my block? Thank you!