email-all-chars-within-ascii-cli1.11.1
§ Quick Take
Call on one file:

Call just the application and it will let you choose a file from that folder:

Call on multiple files all at once:

§ Use it
Once installed, call it on a file:
withinascii YOURFILE.html
or
tinaturner "templates/YOURFILE.html"
Whichever is easier for you to remember.
§ Idea
This CLI app will check, does your HTML file (or some other extension) contains non-ASCII characters.
Specifically, it will check, are your file contents suitable for 7bit encoding, in other words, are all characters within the basic ASCII range , the first 126^ characters. However, only this check would be short-sighted, as invisible control characters (anything below decimal point 32) fall within ASCII range but are bad.
We don't want any invisible control characters (anything below decimal point 32), EXCEPT:
- HT , horizontal tab, decimal number 9
- LF , new line, decimal number 10
- CR , carriage return, decimal number 13
^ Also, we don't want character at a decimal point 127, DEL , which technically falls within basic ASCII range but might appear broken in email-consumption software.
§ Practical use
We're going to use this library to validate our email templates, as a part of final QA. In theory, all email templates should be HTML encoded and have no characters outside the basic ASCII range (or invisible control characters like ETX). In practice, all depends on the server, because your ESP back-end might encode the rogue characters for you. But it might not, and you'd be in trouble.
We're going to prepare for the worst and deliver all our templates ready for ANY encoding, conforming to 7bit spec: no characters beyond first 126 decimal point.
PS. It's 126, not 127 because 127 is "invisible" DEL character which is not acceptable in templates.
Check out the API version which works well in Gulp environment.
§ Changelog
See it in the monorepo , on Sourcehut.
§ Licence
Copyright © 2010–2020 Roy Revelt and other contributors