I tried to add filepost, I did the following:
PHP Code: 
    re_link96 = new RegExp('(https?://(?:[A-Z0-9]\.)*(?:filepost.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|])'"ig");
    
re_link97 = new RegExp('https?://(?:[A-Z0-9]\.)*(?:filepost.com)[-()A-Z0-9+&@#/%?=~_|!:,.;]*[A-Z0-9+&@#/%=~_|]'"i");

then added this 

        
else if(re_link97.test(text)){
                
newNode=document.createElement('span');
                
text=jQuery('<div/>').text(text).html();
                
newNode.innerHTML=text.replace(re_link94'<a href="$1" target="_blank">$1</a>');
                
node.parentNode.replaceChild(newNodenode);
        } 
And it doesn't work, what did I wrong?