#!/bin/sh

# Remove excess empty lines
# Remove ".#." strings marking sentence boundaries
# Remove <Exc___>...</Exc___> tags

sed -r '/^$/d' |
sed -r 's/^\.#\..*//g' |
sed -r 's/<\/?Exc[^>]+>//'
