Skip to content

Instantly share code, notes, and snippets.

@g-P
Last active January 26, 2022 14:02
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save g-P/0e663535d69a06f4dcca to your computer and use it in GitHub Desktop.
Save g-P/0e663535d69a06f4dcca to your computer and use it in GitHub Desktop.
Print Git Books
/*
If you try to print a gitbook directly, you get nothing but the contents because of their *just* use of `@media print` styling to hide away the content section of the books.
Fret not, here is the codez:
*/
$(".book-header,.book-summary,.navigation,.book-progress").remove();
$(".book.with-summary .book-body").css('left', '0px');
$("*").css('position', 'static');
window.print()
/*
You still have to run this for each chapter page to save the chapter as pdf and club them together later(this is drag and drop on mac). You can further use calibre to convert to kindle or whatever you need.
Perhaps some one will go one step more to write a node.js utility to print git books.
But hey, do buy the books to support the authors.
*/
@adi-g15
Copy link

adi-g15 commented Jan 26, 2022

Works in 2022 also : ). Thanks 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment