Simplify text formats
MariaDB [migrate]> SELECT count(*), body_format FROM field_data_body GROUP BY body_format;
+----------+---------------+
| count(*) | body_format |
+----------+---------------+
| 2 | NULL |
| 15723 | basic |
| 8610 | filtered_html |
| 69183 | full_html |
| 14 | php_code |
| 60 | plain_text |
+----------+---------------+
6 rows in set (0.025 sec)
- NULL, php_code, full_html > full_html
- basic, filtered_html > basic_html
Drupal 7 /admin/config/content/formats/filtered_html
Allowed HTML tags:
<a> <s> <p> <span> <div> <h1> <h2> <h3> <h4> <h5> <h6> <img> <map> <area> <hr> <br> <br /> <ul> <ol> <li> <dl> <dt> <dd> <table> <tr> <td> <em> <b> <u> <i> <strong> <font> <del> <ins> <sub> <sup> <quote> <blockquote> <pre> <address> <code> <cite> <embed> <object> <param> <strike> <caption>
Drupal 7 /admin/config/content/formats/basic
Allowed HTML tags:
<a> <s> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd> <p> <br>