unidecode icon indicating copy to clipboard operation
unidecode copied to clipboard

Support transforming ℉ into something

Open circuitmike opened this issue 2 years ago • 1 comments

I'd like to see unidecode turn ℉ into something else, although I'm not sure what the best option for replacing the degree symbol is. degF maybe? Just F?

circuitmike avatar Feb 09 '24 17:02 circuitmike

>>> import unidecode
>>> unidecode.unidecode('°F')
'degF'

So it would make sense to decode as degF too.

jwilk avatar Mar 13 '24 08:03 jwilk