a href download doesn't work with some extensions or with files without extensions.
Works fine:
<a href="/test.txt" download>test.txt</a>
Doesn't work:
<a href="/test" download>test</a>
<a href="/test.exe" download>test.exe</a>
Also doesn't work with: download="fileName"
, target="_blank"
Is there way to force download files with other extensions?