In Drupal 7, when you had a plain text field on a content type, there was an option to set the field to use
Text processing
- Plain text
- Filtered text (user selects text format)
This allowed people to put html into a simple text box and display properly formatted.
Does something like this exist in Drupal 8/9?
If not, how can I output text in proper html format in my twig, or using a node_preprocess function?
For example, if someone enters <strong>Hello</strong>
in the text field, I can output this properly on the front end?