Right now I get an invalid markup error or the link just isn't clickable when I add "mailto:#myteam@company.com" as a link to the wiki. Is there a way to work around this?
I encountered this same problem, there is a JIRA for it. https://jira.atlassian.com/browse/CONF-24880
I however was able to workaround by creating a custom User Macro:
## @paramName:title=email|type=string|required=true|desc=Email Address
## @paramLink:title=text|type=string|desc=Link Text
#set ($url = $paramName)
#set ($linktext = $paramLink)
#if (!$linktext)
#set ($linktext = $url)
#end
<a href =mailto:$url>$linktext</a>
I'm not at work but when I am I'll try the suggested workaround from https://jira.atlassian.com/browse/CONF-24880?jql=text%20~%20%22mailto%22"you can replace # with %23 encoding through some Javascript". Though I don't know if just putting %23 will be doubly escaped.
EDIT - sadly escaping didn't work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Exact. I've even tried html-escaping and url-escaping but it doesn't change anything. You should check whether there's already a bug for that in Atlassian's bugtracker for Confluence.
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.