Changeset 52188 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 11/16/2021 07:40:36 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r52132 r52188 2515 2515 $newtext = ''; 2516 2516 // Known single-entity/self-closing tags. 2517 $single_tags = array( 'area', 'base', 'basefont', 'br', 'col', 'command', 'embed', 'frame', 'hr', 'img', 'input', 'isindex', 'link', 'meta', 'param', 'source' );2517 $single_tags = array( 'area', 'base', 'basefont', 'br', 'col', 'command', 'embed', 'frame', 'hr', 'img', 'input', 'isindex', 'link', 'meta', 'param', 'source', 'track', 'wbr' ); 2518 2518 // Tags that can be immediately nested within themselves. 2519 $nestable_tags = array( ' blockquote', 'div', 'object', 'q', 'span' );2519 $nestable_tags = array( 'article', 'aside', 'blockquote', 'details', 'div', 'figure', 'object', 'q', 'section', 'span' ); 2520 2520 2521 2521 // WP bug fix for comments - in case you REALLY meant to type '< !--'.
Note: See TracChangeset
for help on using the changeset viewer.