I'm working in SharePoint 2010, and creating an item in an "Announcement" type list. What I want to do is insert a link with a query in it:
https://www.yammer.com/company-name.com/#/threads/inGroup?type=in_group&feedId=1234567
I'm using the built-in SharePoint HTML editor to edit my text, and I inserted the link naively as:
<a href="https://www.yammer.com/company-name.com/#/threads/inGroup?type=in_group&feedId=1234567"> Yammer group </a>
However, when I exit the HTML editor, SharePoint automatically changes the code. The ampersand, used to separate the query arguments, gets replaced by %26, and as a consequence the link doesn't work as intended.
I've tried a number of workarounds for the "&" symbol, but SharePoint always substitutes in a way that makes the link useless (in IE9 at least):
& --> %26
& --> %26
& --> %26
\x26 --> %5cx26
Working with webparts, e.g. a content editor webpart, is not an option (the body of the list entries is HTML only).
How do I get the link to be passed/displayed correctly? I'm grateful for any ideas!
Thanks in advance, Ben