-
-
Save mprat/9227625 to your computer and use it in GitHub Desktop.
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 | |
#----------------------------------------------------------------------------- | |
import io | |
import sys | |
if len(sys.argv) != 2: | |
print "Enter the notebook name as the command-line argument" | |
else: | |
notebook = sys.argv[1] | |
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