Does WordPress has an automatic link parse function?

There is make_clickable which is applied as a filter on comment_text but not on post/page content. You could add it as a filter with…

add_filter('the_content','make_clickable');

Untested. I have not idea how well that will behave. There may or may not be conflicts with already defined URLs, or other markup. I haven’t investigated that. Be aware.