Drupal HTML WYSIWY Filter strips "file:///" from hyperlinks even though I have allowed the HTML attribute a[*], what am I missing?
I want to open a local path \myserver\folder\file and thus I added the protocol in the link dialogue and can see in the plain text editor that the href is created properly:
<a href="file:///\\myserver\folder\file" rel="nofollow" target="_blank">test</a>
but when I preview/save it that gets stripped and thus is not working
<a href="///\\myserver\folder\file" rel="nofollow" target="_blank">test</a>