#!/usr/bin/env python from wiki2html import wiki2html, make_narrow html = ''' ''' text = open('tutorial.txt').read() content = wiki2html(text) content = make_narrow(content) html += content html += '''


2005 Martin Renold ''' open('tutorial.html', 'w').write(html)