#Auto link JS
#https://www.espacevoiture.com/
<script type="text/javascript">
(function(){
if($('presentation')==null)
return;
$('presentation').set('html',(function(str, attributes){
attributes = attributes || {};
var attrs = "";
for(name in attributes)
attrs += " "+ name +'="'+ attributes[name] +'"';
var reg = new RegExp("(\\s?)((http|https|ftp)://[^\\s<]+[^\\s<\.)])", "gim");
str = str.toString().replace(reg, '$1<a href="$2"'+ attrs +'>$2</a>');
return str;
}($('presentation').get('html'),{"target":"_blank","rel":"nofollow"})));
})();
</script>