Skip to content

Instantly share code, notes, and snippets.

@kendallroth
Created March 22, 2017 14:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kendallroth/510e2787d1e67f50705cd415731b574b to your computer and use it in GitHub Desktop.
Save kendallroth/510e2787d1e67f50705cd415731b574b to your computer and use it in GitHub Desktop.
Print GitHub Markdown

Print GitHub Markdown

Either create a browser snippet or execute from console:

var content = document.querySelector('.markdown-body');
var body = document.querySelector('body');
body.innerHTML = '';
body.appendChild(content);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment