Skip to content

Instantly share code, notes, and snippets.

@storycraft
Last active May 19, 2019 14:06
Show Gist options
  • Save storycraft/77330e7499ec35f5cb5b7643b8640c3c to your computer and use it in GitHub Desktop.
Save storycraft/77330e7499ec35f5cb5b7643b8640c3c to your computer and use it in GitHub Desktop.
(function () {
var $ = document.querySelector.bind(document);
var original = document.body.innerHTML;
var outHTML = $('article.markdown-body').outerHTML;
document.body.innerHTML = outHTML;
window.print();
document.body.innerHTML = original;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment