#!perl -plwCIiO
# this script must be called with perl -x or else
# Too late for "-CIiO" option
# -CIiO
# -CI is needed if < stdin
# -Ci is needed if file specified on command line
# unfortunately, -C needs to be specified on the command line so intended only for one-liners
use warnings FATAL => "utf8";
# as of 2026-05 afdbox uses UTF-8 (Mother's Day) and frequent use of en-dash for ranges.
# apostrophe and en-dash
y/\x{2019}\x{2013}/\x27-/;
# curly quotes currently not seen
#y/\x{2018}\x{201c}\x{201d}/\x27""/;
