You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The standard for the mailto schema (RFC6068) allows multiple recipients that are separated by ,. One example ismailto:foo@example.com,bar@example.com. Such links that contain multiple recipients are incorrectly flagged as invalid by htmltest.
To Reproduce
Steps to reproduce the behaviour:
Run with empty config on index.html: htmltest index.html
The link is declared as invalid by htmltest because the individual recipients are not split up.
I will try to provide a PR for this Issue. I expect the PR to be of medium size.
The text was updated successfully, but these errors were encountered:
Describe the bug
The standard for the
mailto
schema (RFC6068) allows multiple recipients that are separated by,
. One example ismailto:foo@example.com,bar@example.com
. Such links that contain multiple recipients are incorrectly flagged as invalid by htmltest.To Reproduce
Steps to reproduce the behaviour:
htmltest index.html
.htmltest.yml (empty)
index.html
Expected behaviour
mailto:foo@example.com,bar@exmple.com
is a validmailto
URI as per RFC6068. No error or warning should be raised by htmltest.Actual behaviour
The link is flagged as invalid:
Versions
Additional context
The link is declared as invalid by htmltest because the individual recipients are not split up.
I will try to provide a PR for this Issue. I expect the PR to be of medium size.
The text was updated successfully, but these errors were encountered: