#!/usr/bin/env python import argparse import fileinput import sys from butterfly.escapes import html parser = argparse.ArgumentParser( description="Butterfly html converter.\n\n" "Output in html standard input.\n" "Example: $ echo \"Bold\" | b html", formatter_class=argparse.RawTextHelpFormatter) parser.parse_known_args() with html(): for line in fileinput.input(): sys.stdout.write(line)