#!/usr/bin/env python # coding: utf-8 # ## Wrap README.md in a notebook # In[1]: from IPython.display import display, Markdown with open('README.md', 'r') as fh: content = fh.read() display(Markdown(content))