Skip to content

Instantly share code, notes, and snippets.

@vadimii
Forked from hangxingliu/github-markdown-print.js
Created August 8, 2018 12:40
Show Gist options
  • Save vadimii/928c95c75fed3920f34f029101fd4f6d to your computer and use it in GitHub Desktop.
Save vadimii/928c95c75fed3920f34f029101fd4f6d to your computer and use it in GitHub Desktop.
GitHub Markdown Print Script
// Refrence from: https://gist.github.com/beevelop/a0f2c76e79610dca01550c9a93f83876
// Copy following scripts in the developer console of page included markdown content you want to print:
(function () {
var $ = document.querySelector.bind(document);
$('#readme').setAttribute('style', 'position:absolute;top:0;left:0;right:0;bottom:0;z-index:100;background-color:white');
$('#readme>article').setAttribute('style', 'border: none');
$('body').innerHTML = $('#readme').outerHTML;
window.print();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment