Closed Slugg0 closed 9 years ago
How does your text source look like?
Saw another example, just like this.
some link http://example.com here
I'll check it up tomorrow. The link seems to be incorrect.
I fixed it by removing \ in the string. Should work in 1.0.1.
Maybe I've done something wrong here, but when copying your code and putting it in my Anax, makeClickable creates the link
<a href="active/dir/\'http://link.se\'>http://link.se</a>
Replacing
function ($matches) { return "<a href=\'{$matches[0]}\'>{$matches[0]}</a>"; },
withcreate_function( '$matches', 'return "<a href=\'{$matches[0]}\'>{$matches[0]}</a>";' ),
solved it for me.