In our MediaWiki server, we have hundreds of hyperlinks that have illegal characters in the URL.
Specifically, the illegal characters are:
/
:
;
Is there any work-around or process for getting these hyperlinks imported into Confluence without making them unusable?
I explained my full solution to this issue here:
https://answers.atlassian.com/questions/31829/confluence-support-non-http-ftp-hyperlinks/33434
Turns out escaping the illegal characters with back-slashes (\) works very well.
i.e.
colon = \:
semi-colon = \;
forward-slash = \/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can't use the HTML equivalent, since it also contains illegal characters... currently looking into URL encoded characters (since this is a URL).
i.e.
colon = %3A
semi-colon = %3B
forward-slash = %2F
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Would it workable to replace those illegal characters with the HTML equivalent?
i.e. replace : with :
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.