Skip to content

Instantly share code, notes, and snippets.

@tbremer
Created February 12, 2023 16:54
Show Gist options
  • Save tbremer/3fd3be98073955ff8b6d51e140a44e7c to your computer and use it in GitHub Desktop.
Save tbremer/3fd3be98073955ff8b6d51e140a44e7c to your computer and use it in GitHub Desktop.
Github Markdown Print
(() => {
document.body.appendChild(document.querySelector(".markdown-body"));
document.querySelector("div.page-responsive")?.remove();
(Array.from(document.querySelectorAll('div')) ?? []).forEach(e => { if (e.textContent === '') e.style = 'page-break-after: always;' })
window.print();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment