diff --git a/core/modules/views/views.module b/core/modules/views/views.module index 3ba93f5..0858e78 100644 --- a/core/modules/views/views.module +++ b/core/modules/views/views.module @@ -40,6 +40,8 @@ function views_help($route_name, RouteMatchInterface $route_match) { $output .= '
' . t('The Views module adds functionality to some core administration pages. For example, admin/content uses Views to filter and sort content. With Views uninstalled, admin/content is more limited.') . '
'; $output .= '
' . t('Expanding Views functionality') . '
'; $output .= '
' . t('Contributed projects that support the Views module can be found in the online documentation for Views-related contributed modules.', array('!node' => 'https://drupal.org/documentation/modules/views/add-ons')) . '
'; + $output .= '
' . t('Documenting table accessibility') . '
'; + $output .= '
' . t('Views tables include semantic markup to improve accessibility. Using id and headers attributes data cells are automatically associated with header cells. Furthermore, within the Views table settings, you can add both a caption for the table as well as a summary. Both the caption & summary are visible by default and also fully HTML5 compliant.') . '
'; $output .= ''; return $output; }