mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-12 11:19:11 -05:00
b31b232edf
* [WiP] Show host for “misleading” links * Disallow misleading targets which domain names are prefixes of link text * Move decodeIDNA to app/javascript/mastodon/utils * Add support for international domain names * Change link origin tag color to darker text color * Handle links to domains starting with www. as shortened by Mastodon * [WiP] Ignore links that cannot be misread as URLs, rewrite other links
11 lines
255 B
JavaScript
11 lines
255 B
JavaScript
import punycode from 'punycode';
|
|
|
|
const IDNA_PREFIX = 'xn--';
|
|
|
|
export const decode = domain => {
|
|
return domain
|
|
.split('.')
|
|
.map(part => part.indexOf(IDNA_PREFIX) === 0 ? punycode.decode(part.slice(IDNA_PREFIX.length)) : part)
|
|
.join('.');
|
|
};
|