Last active
June 19, 2024 02:31
-
-
Save PathToLife/a9c55105484a223d108a4d42e54be4bd to your computer and use it in GitHub Desktop.
Print Github Markdown File Page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.body.appendChild(document.querySelector(".markdown-body"));document.querySelector("header").remove();document.querySelector(".application-main").remove();document.querySelector("footer").remove();window.print(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Removes everything on a Github page except the rendered html markdown, then calls the print api.
In supported browsers you can then select print to pdf.