From 50991a2aafd1b281bda7ea79d3f38f52735fa16d 2012-06-10 00:37:01
From: Jonathan Taylor <jonathan.taylor@stanford.edu>
Date: 2012-06-10 00:37:01
Subject: [PATCH] simple custom converter

---

diff --git a/custom_converter.py b/custom_converter.py
index 83d3f87..7b80417 100644
--- a/custom_converter.py
+++ b/custom_converter.py
@@ -1,15 +1,10 @@
-import os, copy
+"""
+This module gives a simple example of a custom notebook converter taht only
+captures display data and deletes the cell inputs. 
+"""
 
+import copy
 import nbconvert as nb
-import json
-from decorators import DocInherit
-
-from IPython.external import argparse
-from IPython.nbformat import current as nbformat
-from IPython.nbformat.v3.nbjson import from_dict, rejoin_lines, BytesEncoder
-from IPython.utils.text import indent
-from IPython.utils import py3compat
-
 
 class CustomNotebookConverter(nb.ConverterNotebook):