ckeditor_lineheight.module in CKEditor Line Height 8
File
ckeditor_lineheight.module
View source
<?php
use Drupal\Core\Routing\RouteMatchInterface;
function ckeditor_lineheight_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.ckeditor_lineheight':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Adds the functionality to set the line-height property of an element similar to the font-size.') . '</p>';
return $output;
default:
}
}