You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
498 B
17 lines
498 B
// Copyright (c) 2015, Daniel Martí <[email protected]> |
|
// See LICENSE for licensing information |
|
|
|
package xurls |
|
|
|
// SchemesNoAuthority is a sorted list of some well-known url schemes that are |
|
// followed by ":" instead of "://". Since these are more prone to false |
|
// positives, we limit their matching. |
|
var SchemesNoAuthority = []string{ |
|
`bitcoin`, // Bitcoin |
|
`file`, // Files |
|
`magnet`, // Torrent magnets |
|
`mailto`, // Mail |
|
`sms`, // SMS |
|
`tel`, // Telephone |
|
`xmpp`, // XMPP |
|
}
|
|
|