XF 1.5 about URL BB Code

Jason76

Active member
https://xenforo.com/community/help/bb-codes (incorrect about URL BBCode)

With BB code if you wanted to write:

Code:
[URL= 'http://xenforo.com']XenForo.com[/URL]

NOT

[URL= http://xenforo.com]XenForo.com[/URL] (without single quote around url)

However, using no quotes around the URL is considered the correct way on the XenForo help page regarding BB Code. Also, will double quote yield the same thing as single quotes? Should one use single or double quotes?

When I was playing around with it the single quotes worked.

Thanks
 
All variations work:
Code:
[URL=https://xenforo.com]XenForo[/URL]

[URL='https://xenforo.com']XenForo[/URL]

[URL="https://xenforo.com"]XenForo[/URL]
 
Top Bottom