typogrify icon indicating copy to clipboard operation
typogrify copied to clipboard

Double backslashes get eaten

Open spookylukey opened this issue 6 years ago • 0 comments

For example:

>>> from typogrify.filters import typogrify
>>> typogrify('\\')   # a single backslash - correct output
'\\'

>>> typogrify('\\\\')   # double backslash - but output is single
'\'

spookylukey avatar Jun 21 '18 19:06 spookylukey