#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
labnote

Keith Hughitt <khughitt@umd.edu>
"""
from labnote import Notebook

def main():
    notebook = Notebook()
    notebook.render()

if __name__ == '__main__':
    main()
