#! /bin/bash
# Last edited on 2017-02-09 02:34:14 by jstolfi

# Reformats the SEC S-1/A filings to make then more suitable for "diff".
# Assuemes that the HTML version was copied with C-A C-C and pasted
# into an ISO-Latin-1 file.  That requires replacing non-ISO chars (such as quotes)
# by hand.  Also replace bullet (center-dot?) by "o" and merge it with following non-blank
# line.

cat \
  | expand \
  | sed -f break_lines.sed \
  | fmt -s -u -w 72 \
  | cat -s 
