Using a static HTML file can I embed base64 content in an object element like this:
<object data="data:application/pdf;base64,x0l3ACAAAA...LOTS MORE DATA" type="application/pdf" id="SOME_ID"></object>
And then somehow have a link to open that content (ideally in a new window or as a download), e.g.this, that does not appear to work:
<a href="SOME_ID" target="_blank">open file</a>