So, I’ve got a need for a specific object, that is represented in markdown as html like so
<object width="400" height="500" type="application/pdf" data="page://manual.pdf">
<p>Ups, das PDF der Anleitung kann nicht angezeigt werden...</p>
<a href="page://manual.pdf">Hier herunterladen</a>
</object>
However, quite obviously the href and data attribute doesn’t resolve the page://manual.pdf link.
What is my best course of action here? Switch to modular and just use a “object module” here? Any other way to link to / display my pdf properly within that page?
Thanks a lot 🙂