-
-
Save teoguso/3b2d73fa13cb76a7883173cc8ece49fa to your computer and use it in GitHub Desktop.
A little snippet to fix print issues in IPython slides.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
#---------------------------------------------------------------------------- | |
# Copyright (c) 2013 - Damián Avila | |
# | |
# Distributed under the terms of the Modified BSD License. | |
# | |
# A little snippet to fix @media print issue printing slides from IPython | |
#----------------------------------------------------------------------------- | |
from __future__ import print_function | |
import io | |
notebook = 'jevans.ipynb' | |
path = notebook[:-6] + '.slides.html' | |
flag = u'@media print{*{text-shadow:none !important;color:#000 !important' | |
with io.open(path, 'r') as in_file: | |
data = in_file.readlines() | |
for i, line in enumerate(data): | |
if line[:64] == flag: | |
data[i] = data[i].replace('color:#000 !important;', '') | |
with io.open(path, 'w') as out_file: | |
out_file.writelines(data) | |
print("You can now print your slides") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment