Skip to content

Instantly share code, notes, and snippets.

@peebeebee
Created June 30, 2024 14:52
Show Gist options
  • Save peebeebee/086696d84f1254601ae74b44e6e8d225 to your computer and use it in GitHub Desktop.
Save peebeebee/086696d84f1254601ae74b44e6e8d225 to your computer and use it in GitHub Desktop.
Printer Friendly Kiwico Articles
const body = document.body;
const hero = document.querySelector('.hero').cloneNode(true);
const materials = document.querySelector('.project-materials').cloneNode(true);
const article = document.querySelector('.project-steps').cloneNode(true);
body.innerHTML = `<style>
.step-type {
page-break-inside: avoid;
}
.dotted-line--space-under-large {
display: none;
}
</style>`;
body.appendChild(hero);
body.appendChild(materials);
body.appendChild(article);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment