Remove <u> tag from the system module since it has been deprecated.
// @todo The <u> tag is currently not supported.
'<u>Drupal</u>' => "Drupal\n",Remove <u> tag from the system module since it has been deprecated.
// @todo The <u> tag is currently not supported.
'<u>Drupal</u>' => "Drupal\n",
Comments
Comment #2
spokjeComment #7
mstrelan commentedWhat exactly are we removing? The issue summary does not contain much detail at all, but it does point to some code in
\Drupal\Tests\system\Unit\Mail\HtmlToTextTest::testTags. This test simply checks how various strings are handled byMailFormatHelper::htmlToText. In this case<u>is not supported so it gets stripped.We could either remove just the
@todocomment since we'll never add support for<u>tags, or we could remove that whole test case since it's invalid html. FWIW this test should probably use a data provider.Comment #8
smustgrave commentedSince there's been no follow up and summary isn't clear going to close out.