You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I'm using REST to upload wiki content to my Confluence server (v7.5.2).
'body': { 'storage': { 'representation': 'wiki', 'value': body } }
Where my data has some wiki markup, including something like this:
[ Click here | https://server/Create!init.jspa?pid=123¶m1=abc¶m2=14 ]
which Confluence then turns into:
[ Click here | https://server/Create!init.jspa?pid=123&param1=abc&param2=14 ]
Is there a way to escape the & in my source so that Confluence will keep the URL intact?
Thanks @Pramodh M !
It certainly looks right in Confluence now! But the link still doesn't do what I expect in JIRA.
https://jiraserver/secure/CreateIssueDetails!init.jspa?pid=1234%26reporter=morris
Jira gives the error "You have not selected a valid project to create an issue in."
But if I change that %26 to an & in my browser's address bar, then Jira behaves correctly.
No, if my source data is
[ Click | https://jiraserver/secure/CreateIssueDetails!Init.jspa?pid=1234&reporter=morris ]
It uploads to Confluence as
[ Click | https://jiraserver/secure/CreateIssueDetails!Init.jspa?pid=1234&reporter=morris ]
Jira CreateIssueDetails!init.jspa appears to actually need the & character between the key=value pairs.