Skip to content

Instantly share code, notes, and snippets.

@bpugh
Created September 7, 2023 01:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bpugh/463a2a86779defc5048332e0eb9581b1 to your computer and use it in GitHub Desktop.
Save bpugh/463a2a86779defc5048332e0eb9581b1 to your computer and use it in GitHub Desktop.
Prettyify pages on https://chordsworld.com for printing
const hero = document.querySelector('.hero-container');
const content = document.querySelector('.entry-content');
document.body.innerHTML = '';
document.body.appendChild(hero);
document.body.appendChild(content);
document.body.innerHTML+= "I ❤️ Chris";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment