mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			610 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			610 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
jQuery.fn.autolink = function() {
 | 
						|
	var re = /((([A-Za-z]{3,9}:(?:\/\/)?)(?:[\-;:&=\+\$,\w]+@)?[A-Za-z0-9\.\-]+|(?:www\.|[\-;:&=\+\$,\w]+@)[A-Za-z0-9\.\-]+)((?:\/[\+~%\/\.\w\-]*)?\??(?:[\-\+:=&;%@\.\w]*)#?(?:[\.\!\/\\\w]*))?)/g;
 | 
						|
	return this.find('*').contents()
 | 
						|
		.filter(function () { return this.nodeType === 3; })
 | 
						|
		.each(function() {
 | 
						|
			$(this).each(function() {
 | 
						|
				if (re.test($(this).text()))
 | 
						|
					if($(this).parents().filter('code').length === 0) {
 | 
						|
						$(this).replaceWith(
 | 
						|
							$("<span />").html(
 | 
						|
								this.nodeValue.replace(re, "<a href='$1'>$1</a>")
 | 
						|
							)
 | 
						|
						);
 | 
						|
					};
 | 
						|
			});
 | 
						|
		});
 | 
						|
}; |