mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
Ensure inline code is markdown-escaped as such, and that code snippets in descriptions are properly indented.
Affects DocBlocks for the following core elements: * Backtick-escapes a `<link>` tag in a parameter description for the `embed_oembed_discover` hook * Inline code fixes in the summary and return description for `WP_List_Table::get_table_classes()` * Removes HTML markup from the summary for `WP_List_Table::display_rows_or_placeholder()` * Backtick-escapes a `<tr>` tag in a parameter description for `WP_Users_List_Table::single_row()` * Converts non-DocBlocks into multi-line comments in `WP_Dependencies::do_items()` * Removes HTML markup from the summary for the `comment_form_top` hook. * Inline code and snippet fixes in the description for `wp_get_schedules()` Props rarst for the initial patch. See #30473. git-svn-id: https://develop.svn.wordpress.org/trunk@30537 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -89,7 +89,7 @@ class WP_Dependencies {
|
||||
* @return array Handles of items that have been processed.
|
||||
*/
|
||||
public function do_items( $handles = false, $group = false ) {
|
||||
/**
|
||||
/*
|
||||
* If nothing is passed, print the queue. If a string is passed,
|
||||
* print that item. If an array is passed, print those items.
|
||||
*/
|
||||
@@ -99,7 +99,7 @@ class WP_Dependencies {
|
||||
foreach( $this->to_do as $key => $handle ) {
|
||||
if ( !in_array($handle, $this->done, true) && isset($this->registered[$handle]) ) {
|
||||
|
||||
/**
|
||||
/*
|
||||
* A single item may alias a set of items, by having dependencies,
|
||||
* but no source. Queuing the item queues the dependencies.
|
||||
*
|
||||
@@ -107,13 +107,13 @@ class WP_Dependencies {
|
||||
* <code>add( 'scriptaculous', false, array( 'scriptaculous-dragdrop', 'scriptaculous-slider', 'scriptaculous-controls' ) );</code>
|
||||
*
|
||||
* The src property is false.
|
||||
**/
|
||||
*/
|
||||
if ( ! $this->registered[$handle]->src ) {
|
||||
$this->done[] = $handle;
|
||||
continue;
|
||||
}
|
||||
|
||||
/**
|
||||
/*
|
||||
* Attempt to process the item. If successful,
|
||||
* add the handle to the done array.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user