Lack of interest Extend Link Title Parsing to Profile Posts

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.
This suggestion has been closed. Votes are no longer accepted.
You might expect this to be quite simple, but certainly this is very much intentional.

There's a big difference between auto linking "plain text" (e.g. profile posts and comments) vs. auto linking rich text (e.g. everything that supports bb code).

The major difference is when the auto linking occurs. For plain text this happens on page load. For bb code it happens once, before the content is stored.

So, given this in a profile post:
https://xenforo.com/community

We store it like that in the profile post table. On page load we detect that and convert it to HTML.

However, given this in a normal post:
https://xenforo.com/community

Before saving it in the database we convert it to BB code. Of course without the option enabled we convert it to:
[url]https://xenforo.com/community[/url]

With the option enabled we fetch the title of the URL and convert it to:
[url='https://xenforo.com/community']XenForo Community[/url]

It is then saved like that in the database.

So, if we supported it in profile posts there would need to be one of two very major changes.

One change would be to go off and fetch an entire page of links' titles every time the page is loaded. This just isn't going to happen for hopefully obvious performance reasons.

Another change would be to take a similar approach to bb code and have a sort of [URL] tag syntax.

The latter of those options is the most likely but, of course, this is a pretty major change. So, unlikely to be one we implement in the short term (IMO) but at the same time not completely unrealistic to expect we could support something similar in the future.
 
Top Bottom