view python/quote.py @ 911:6fbbe5f0bc6b default tip

add silvermirror/unison alternative
author Jeff Hammel <k0scist@gmail.com>
date Sun, 14 Apr 2024 15:00:41 -0700
parents a075f8a93183
children
line wrap: on
line source

#!/usr/bin/env python

"""
quote text
"""

# TODO:
# - combine with quotemail...wth?
# -> textshaper

import sys
import textwrap
from subprocess import check_output as call

def quote(text, prefix='> ', width=69):
    """
    returns quoted text
    - prefix: string to prepend quote
    - width: final width (emacs wraps at 70)
    """
    width -= len(prefix) # subtract the prefix
    text = text.strip() # remove surrounding whitespace
    lines = []
    for line in text.splitlines():
        line = line.strip()
        lines.extend(textwrap.wrap(line, width))
    return '\n'.join(['%s%s' % (prefix, line)
                      for line in lines])

def main(args=sys.argv[1:]):
    text = sys.stdin.read()
    sys.stdout.write(quote(text))

if __name__ == '__main__':
    main()