vscode-markdown-pdf
vscode-markdown-pdf copied to clipboard
Feature request: per page settings (margins)
I'm trying to set different margins of the output PDF for the first page (which is a cover image, and I need it to fill the whole page, margin: 0). The rest of the document would have different settings (margins as default for example).
Is there a way to achieve this? I'm looking at the documentation on margins, but this applies to all pages, as far as I understand.
I'm also looking for an option to customize the cover page (custom content displayed instead or over header and footer).
I've tried:
@page :first {
margin-top: 0cm;
margin-bottom: 0cm;
}
to hide header and footer on the first page, however it turns out that the setting was applied to every page...