Skip to content

Instantly share code, notes, and snippets.

@teoguso
Forked from damianavila/fixme.py
Last active November 25, 2016 10:46
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 teoguso/3b2d73fa13cb76a7883173cc8ece49fa to your computer and use it in GitHub Desktop.
Save teoguso/3b2d73fa13cb76a7883173cc8ece49fa 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
#-----------------------------------------------------------------------------
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