I have a minor issue with a page I’ve created that bundles all the content in the site into a single page (so I can PDF it)
given this structure:
section/post1/index.md
section/post1/image.png
section/post2/index.md
section/post2/image.png
_print/index.md
all the content is pulled into the single /_print page, but the image references are wrong.
they all reference /image.png - rather than section/post1/image.png as they need to
I see. Your image links work in your single pages because the links are relative. But in your print page, you’ll need to make them absolute links. Depends on how your permalinks are setup, but probably something like:
I can’t really do that in the markup because any preview would then break
so the markdown is correct, but I need to include the full path in the print page