Skip to content

Instantly share code, notes, and snippets.

@mprat
Forked from damianavila/fixme.py
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mprat/9227625 to your computer and use it in GitHub Desktop.
Save mprat/9227625 to your computer and use it in GitHub Desktop.
# -*- 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