Hi Thomas,
Thank you for your answer. Unfortunately it does not work
Result is:
<a href="http://my_text" class="external-link" rel="nofollow">123</a>
"http://" is added and it prevent my link from working.
Best,
Dawid
What kind of link do you want to add to your page?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is a link with defined protocol which runs application on local machine. It allows user to start program with given parameters by a link.
It look somthing like this:
app-version:///?param=value¶m2=value
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
OK, I see. This is quite tricky.
I've tested with regular confluence links - they always produced some kind of app-version://<our-confluence-url>/?param...
I think, the best way is, to write a user defined macro that produces this link. Try something like this:
## This is an example macro
## @param param1:title=param1|type=string|required=true|desc=param1description
## @param param2:title=param2|type=string|required=true|desc=param2description
<a href="app-version:///?param=$param1¶m2=$param2">123</a>
The macro produces the following output on the page:
<a href="app-version:///?param=$param1&param2=$param2" rel="nofollow">123</a></p>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Doesn't it require administrator privileges?
Anyway I managed to solve my problem by using HTML macro.
Thank you for you help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome
Yes, creating user defined macros requires admin privileges.
Using HTML macro is doing nearly the same, but for security reasons, we do not allow our users to add plain HTML to their pages.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Dawid,
creating a link on a Confluence page results in a form with two fields:
Cheers
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.