diff -u b/core/modules/block/block.api.php b/core/modules/block/block.api.php --- b/core/modules/block/block.api.php +++ b/core/modules/block/block.api.php @@ -20,8 +20,8 @@ * If the module wishes to act on the rendered HTML of the block rather than * the structured content array, it may use this hook to add a #post_render * callback. Alternatively, it could also implement hook_preprocess_HOOK() for - * block.html.twig. See drupal_render() documentation respectively - * for details. @link themeable Default theme implementations topic @link + * block.html.twig. See drupal_render() documentation or the @link themeable + * Default theme implementations topic @endlink for details. * * In addition to hook_block_view_alter(), which is called for all blocks, there * is hook_block_view_BASE_BLOCK_ID_alter(), which can be used to target a diff -u b/core/modules/node/node.api.php b/core/modules/node/node.api.php --- b/core/modules/node/node.api.php +++ b/core/modules/node/node.api.php @@ -817,8 +817,7 @@ * If the module wishes to act on the rendered HTML of the node rather than the * structured content array, it may use this hook to add a #post_render * callback. Alternatively, it could also implement hook_preprocess_HOOK() for - * node.html.twig. See drupal_render() documentation respectively for details. - * @see themeable + * node.html.twig. See drupal_render() documentation for details. * * @param &$build * A renderable array representing the node content. @@ -828,6 +827,7 @@ * The entity view display holding the display options configured for the node * components. * + * @see themeable * @see node_view() * @see hook_entity_view_alter() * diff -u b/core/modules/system/entity.api.php b/core/modules/system/entity.api.php --- b/core/modules/system/entity.api.php +++ b/core/modules/system/entity.api.php @@ -481,7 +481,6 @@ * callback. Alternatively, it could also implement hook_preprocess_HOOK() for * the particular entity type template, if there is one (e.g., node.html.twig). * See drupal_render() for details. - * @see themeable * * @param array &$build * A renderable array representing the entity content. @@ -491,6 +490,7 @@ * The entity view display holding the display options configured for the * entity components. * + * @see themeable * @see hook_entity_view() * @see hook_comment_view_alter() * @see hook_node_view_alter() diff -u b/core/modules/system/system.api.php b/core/modules/system/system.api.php --- b/core/modules/system/system.api.php +++ b/core/modules/system/system.api.php @@ -978,7 +978,6 @@ * Register a module or theme's theme implementations. * The implementations declared by this hook specify how a particular render * array is to be rendered as HTML. - * @see themeable * * @param array $existing * An array of existing implementations that may be used for override @@ -1011,7 +1010,6 @@ * The array values are themselves arrays containing information about the * theme hook and its implementation. Each information array must contain * a 'render element' element. - * @link themeable Default theme implementations topic @link * The following elements may be part of each information array: * - render element: Used for render element items only: the name of the * renderable element or element tree to pass to the theme function. This @@ -1046,6 +1044,7 @@ * - theme path: (automatically derived) The directory path of the theme or * module, so that it doesn't need to be looked up. * + * @see themeable * @see hook_theme_registry_alter() */ function hook_theme($existing, $type, $theme, $path) { diff -u b/core/modules/taxonomy/taxonomy.api.php b/core/modules/taxonomy/taxonomy.api.php --- b/core/modules/taxonomy/taxonomy.api.php +++ b/core/modules/taxonomy/taxonomy.api.php @@ -283,8 +283,8 @@ * structured content array, it may use this hook to add a #post_render * callback. Alternatively, it could also implement * hook_preprocess_HOOK() for taxonomy-term.html.twig. See drupal_render() - * documentation respectively for details. - * @link themeable Default theme implementations topic @link + * documentation or @link themeable Default theme implementations topic @endlink + * for details. * * @param array &$build * A renderable array representing the taxonomy term content. diff -u b/core/modules/user/user.api.php b/core/modules/user/user.api.php --- b/core/modules/user/user.api.php +++ b/core/modules/user/user.api.php @@ -338,15 +338,15 @@ /** * The user was built; the module may modify the structured content. * - * This hook is called after the content has been assembled in a structured array - * and may be used for doing processing which requires that the complete user - * content structure has been built. + * This hook is called after the content has been assembled in a structured + * array and may be used for doing processing which requires that the complete + * user content structure has been built. * * If the module wishes to act on the rendered HTML of the user rather than the - * structured content array, it may use this hook to add a #post_render callback. - * Alternatively, it could also implement hook_preprocess_HOOK() for - * user.html.twig. See drupal_render() documentation for details. - * @link themeable Default theme implementations topic @link + * structured content array, it may use this hook to add a #post_render + * callback. Alternatively, it could also implement hook_preprocess_HOOK() for + * user.html.twig. See drupal_render() documentation or @link themeable + * Default theme implementations topic @endlink for details. * * @param array &$build * A renderable array representing the user.