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.
*/
@codemilli
Copy link

codemilli commented Jul 20, 2016

It does not work, maybe things have changed.

@andineck
Copy link

worked like a charm :-)

@eimfach
Copy link

eimfach commented Oct 1, 2016

Works for windows edge better than chrome (Windows 10)

@engwansong
Copy link

Thanks! Still works for Firefox Quantum 67.0 (Mac), no longer working for Chrome 75.0.3770.100 (Mac)

@aabeben
Copy link

aabeben commented Jul 16, 2019

Thanks! working in Opera
image

@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