mirror of
https://github.com/go-gitea/gitea
synced 2025-07-21 09:48:37 +00:00
Markdown rendering overhaul (#186)
* Markdown rendering overhaul Cleaned up and squashed commits into single one. Signed-off-by: Andrew Boyarshin <boyarshinand@gmail.com> * Fix markdown API, add markdown module and API tests, improve code coverage Signed-off-by: Andrew Boyarshin <boyarshinand@gmail.com>
This commit is contained in:
committed by
Lunny Xiao
parent
5cc275b1de
commit
dc8248f8a4
12
public/js/libs/autolink.js
Normal file
12
public/js/libs/autolink.js
Normal file
@@ -0,0 +1,12 @@
|
||||
jQuery.fn.autolink = function() {
|
||||
return this.find('*').contents().filter(function () { return this.nodeType === 3; }).each(function() {
|
||||
var re = /((([A-Za-z]{3,9}:(?:\/\/)?)(?:[\-;:&=\+\$,\w]+@)?[A-Za-z0-9\.\-]+|(?:www\.|[\-;:&=\+\$,\w]+@)[A-Za-z0-9\.\-]+)((?:\/[\+~%\/\.\w\-]*)?\??(?:[\-\+:=&;%@\.\w]*)#?(?:[\.\!\/\\\w]*))?)/g;
|
||||
$(this).each(function() {
|
||||
$(this).replaceWith(
|
||||
$("<span />").html(
|
||||
this.nodeValue.replace(re, "<a href='$1'>$1</a>")
|
||||
)
|
||||
);
|
||||
});
|
||||
});
|
||||
};
|
Reference in New Issue
Block a user