mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Docs: Improve HTML API file and class headers per the documentation standards.
Follow-up to [55203], [55304], [55718], [55724], [55727]. See #57840. git-svn-id: https://develop.svn.wordpress.org/trunk@55734 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
74adacb801
commit
bf11005366
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* HTML Tag Processor: Attribute token structure class.
|
||||
* HTML API: WP_HTML_Attribute_Token class
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage HTML-API
|
||||
@ -8,7 +8,8 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* Data structure for the attribute token that allows to drastically improve performance.
|
||||
* Core class used by the HTML tag processor as a data structure for the attribute token,
|
||||
* allowing to drastically improve performance.
|
||||
*
|
||||
* This class is for internal usage of the WP_HTML_Tag_Processor class.
|
||||
*
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* HTML Span: Represents a textual span inside an HTML document.
|
||||
* HTML API: WP_HTML_Span class
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage HTML-API
|
||||
@ -8,10 +8,11 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* Represents a textual span inside an HTML document.
|
||||
* Core class used by the HTML tag processor to represent a textual span
|
||||
* inside an HTML document.
|
||||
*
|
||||
* This is a two-tuple in disguise, used to avoid the memory
|
||||
* overhead involved in using an array for the same purpose.
|
||||
* This is a two-tuple in disguise, used to avoid the memory overhead
|
||||
* involved in using an array for the same purpose.
|
||||
*
|
||||
* This class is for internal usage of the WP_HTML_Tag_Processor class.
|
||||
*
|
||||
|
||||
@ -1,5 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* HTML API: WP_HTML_Tag_Processor class
|
||||
*
|
||||
* Scans through an HTML document to find specific tags, then
|
||||
* transforms those tags by adding, removing, or updating the
|
||||
* values of the HTML attributes within that tag (opener).
|
||||
@ -27,7 +29,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* Modifies attributes in an HTML document for tags matching a query.
|
||||
* Core class used to modify attributes in an HTML document for tags matching a query.
|
||||
*
|
||||
* ## Usage
|
||||
*
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* HTML Tag Processor: Text replacement class.
|
||||
* HTML API: WP_HTML_Text_Replacement class
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage HTML-API
|
||||
@ -8,7 +8,8 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* Data structure used to replace existing content from start to end that allows to drastically improve performance.
|
||||
* Core class used by the HTML tag processor as a data structure for replacing
|
||||
* existing content from start to end, allowing to drastically improve performance.
|
||||
*
|
||||
* This class is for internal usage of the WP_HTML_Tag_Processor class.
|
||||
*
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Style Engine: WP_Style_Engine_CSS_Declarations class
|
||||
*
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage StyleEngine
|
||||
* @since 6.1.0
|
||||
|
||||
Loading…
Reference in New Issue
Block a user