emmetio / sublime-text-plugin

The essential toolkit for web-developers
https://emmet.io
MIT License
253 stars 29 forks source link

Mixed-case Email Addresses Ignored by Wrap with Abbreviation #145

Closed michaelalandawson closed 3 years ago

michaelalandawson commented 3 years ago

It appears that Emmet's Wrap with Abbreviation command ignores any email addresses that have upper-case letters anywhere in the address.

Wrap each example with 'a' tag:

user@mylongdomainname.com Result: href attribute populated as expected <a href="mailto:user@mylongdomainname.com">user@mylongdomainname.com</a>

user@myLongDomainName.com Result: href attribute not populated <a href="">user@myLongDomainName.com</a>

uSEr@mylongdomainname.com Result: href attribute not populated <a href="">uSEr@mylongdomainname.com</a>

Thanks!

sergeche commented 3 years ago

Should be fixed in v2.3.2

michaelalandawson commented 3 years ago

Thank you!

michaelalandawson commented 3 years ago

Fix confirmed.