@@ -352,7 +352,7 @@ public function tips($long = FALSE) {
}
$output.='<p>'.$this->t('This site allows HTML content. While learning all of HTML may feel intimidating, learning how to use a very small number of the most basic HTML "tags" is very easy. This table provides examples for each tag that is enabled on this site.').'</p>';
$output.='<p>'.$this->t('For more information see W3C\'s <a href=":html-specifications">HTML Specifications</a> or use your favorite search engine to find other sites that explain HTML.',[':html-specifications'=>'http://www.w3.org/TR/html/']).'</p>';
$output.='<p>'.$this->t('For more information see the <a href=":html-specifications">HTML Living Standard</a> or use your favorite search engine to find other sites that explain HTML.',[':html-specifications'=>'https://html.spec.whatwg.org/']).'</p>';
$tips=[
'a'=>[$this->t('Anchors are used to make links to other pages.'),'<a href="'.$base_url.'">'.Html::escape(\Drupal::config('system.site')->get('name')).'</a>'],
'br'=>[$this->t('By default line break tags are automatically added, so use this tag to add additional ones. Use of this tag is different because it is not used with an open/close pair like all the others. Use the extra " /" inside the tag to maintain XHTML 1.0 compatibility'),$this->t('Text with <br />line break')],