jonbwhite
jonbwhite
i.e. for unit numbers prefixed with a pound sign Input such as "1234 Main st. #2" will now work Fixes https://github.com/Brobin/usps-api/issues/17
I ran into an issue where I was using a string as a variable to change latex rendering and realized it was because the variable was getting escaped by default...
This is due to the extra non-capturing group with a plus outside of the different regexes for letters. Removing the + and outer parens removes this problem and still matches...
The `creative_letters` option currently will emit warnings due to the construction of the regexes used. By removing the outer non-matching group and making the regex match exactly once, we can...