Skip to content

Instantly share code, notes, and snippets.

@damianavila
Created August 12, 2013 14:19
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save damianavila/6211211 to your computer and use it in GitHub Desktop.
Save damianavila/6211211 to your computer and use it in GitHub Desktop.
A little snippet to fix print issues in IPython slides.
# -*- 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
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