By editor, 18 December, 2015 Question How to filter input text with Drupal Text Formats on Drupal 8 ? Like Drupal 7, you can use check_markup(); CAUTION : This must only use on a rendered HTML page $text_out = check_markup($text, $format_id = NULL, $langcode = '', $filter_types_to_skip = array()) $text_out => \Drupal\Component\Render\MarkupInterface The filtered text. Example: $text = "<b>Your</b> <h1>Html</h1> <u>Text</u>" $text_out = check_markup($text, 'basic_html'); //Return text using Basic Html Filter settings $text_out = check_markup($text); //Return text using default settings //dpm($text_out.""); Tags Drupal 8 Code Comments You must have JavaScript enabled to use this form. Your name Subject Comment About text formats Plain text No HTML tags allowed. Lines and paragraphs break automatically. Web page addresses and email addresses turn into links automatically.
Comments