mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-30 21:30:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			498 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			498 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) 2015, Daniel Martí <mvdan@mvdan.cc>
 | |
| // 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
 | |
| }
 |