I have lots of links in markdown that my SEO magician now wants to have trailing slashes on. I've done the find/replace, but the final slash is being removed in markdown processing.
If I put in [](/link/to/page/) I end up with <a href="/link/to/page"></a>. Why?
If I escape the last slash [](/link/to/page\/) I get what I am looking for, but this does not feel like a good solution. The next person that edits the page is likely to forget as it is an add syntax.