Changeset 55734
- Timestamp:
- 05/09/2023 11:17:14 AM (19 months ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-attribute-token.php
r55203 r55734 1 1 <?php 2 2 /** 3 * HTML Tag Processor: Attribute token structure class.3 * HTML API: WP_HTML_Attribute_Token class 4 4 * 5 5 * @package WordPress … … 9 9 10 10 /** 11 * Data structure for the attribute token that allows to drastically improve performance. 11 * Core class used by the HTML tag processor as a data structure for the attribute token, 12 * allowing to drastically improve performance. 12 13 * 13 14 * This class is for internal usage of the WP_HTML_Tag_Processor class. -
trunk/src/wp-includes/html-api/class-wp-html-span.php
r55203 r55734 1 1 <?php 2 2 /** 3 * HTML Span: Represents a textual span inside an HTML document.3 * HTML API: WP_HTML_Span class 4 4 * 5 5 * @package WordPress … … 9 9 10 10 /** 11 * Represents a textual span inside an HTML document. 11 * Core class used by the HTML tag processor to represent a textual span 12 * inside an HTML document. 12 13 * 13 * This is a two-tuple in disguise, used to avoid the memory 14 * overheadinvolved in using an array for the same purpose.14 * This is a two-tuple in disguise, used to avoid the memory overhead 15 * involved in using an array for the same purpose. 15 16 * 16 17 * This class is for internal usage of the WP_HTML_Tag_Processor class. -
trunk/src/wp-includes/html-api/class-wp-html-tag-processor.php
r55727 r55734 1 1 <?php 2 2 /** 3 * HTML API: WP_HTML_Tag_Processor class 4 * 3 5 * Scans through an HTML document to find specific tags, then 4 6 * transforms those tags by adding, removing, or updating the … … 28 30 29 31 /** 30 * Modifiesattributes in an HTML document for tags matching a query.32 * Core class used to modify attributes in an HTML document for tags matching a query. 31 33 * 32 34 * ## Usage -
trunk/src/wp-includes/html-api/class-wp-html-text-replacement.php
r55203 r55734 1 1 <?php 2 2 /** 3 * HTML Tag Processor: Text replacement class.3 * HTML API: WP_HTML_Text_Replacement class 4 4 * 5 5 * @package WordPress … … 9 9 10 10 /** 11 * Data structure used to replace existing content from start to end that allows to drastically improve performance. 11 * Core class used by the HTML tag processor as a data structure for replacing 12 * existing content from start to end, allowing to drastically improve performance. 12 13 * 13 14 * This class is for internal usage of the WP_HTML_Tag_Processor class. -
trunk/src/wp-includes/style-engine/class-wp-style-engine-css-declarations.php
r55733 r55734 2 2 /** 3 3 * Style Engine: WP_Style_Engine_CSS_Declarations class 4 * 4 * 5 5 * @package WordPress 6 6 * @subpackage StyleEngine
Note: See TracChangeset
for help on using the changeset viewer.