**tl;dr;** In my markdown, I'd like to provide a link to some office files, like Excel and Word docs. Is this supported? **More contexts:** In my markdown, I have: ```markdown An example template Excel file is attached here [Example Template Excel](/Example_Template.xlsx). ``` I have placed the file in the `/public` folder, and accessing it directly triggers a file download correctly.  However, the link in the markdown is always processed and rendered as: ```html <a href="/Example_Template.xlsx.html">Example Template Excel</a> ``` How can I fix it? Thanks in advance.