
Does anyone recognize which module/function would emit the following warnings? WARNING: nonstandard use of escape in a string literal LINE 11: '# Pandoc\r\n\r\nPandoc is a program for converting ... ^ HINT: Use the escape string syntax for escapes, e.g., E'\r\n'. -- Colin Adams Preston Lancashire

Colin Paul Adams wrote:
Does anyone recognize which module/function would emit the following warnings?
WARNING: nonstandard use of escape in a string literal LINE 11: '# Pandoc\r\n\r\nPandoc is a program for converting ... ^ HINT: Use the escape string syntax for escapes, e.g., E'\r\n'.
PostgreSQL. Perhaps you're trying to save that text in a database?

"Anton" == Anton van Straaten
writes:
Anton> Colin Paul Adams wrote: >> Does anyone recognize which module/function would emit the >> following warnings? >> >> WARNING: nonstandard use of escape in a string literal LINE 11: >> '# Pandoc\r\n\r\nPandoc is a program for converting ... ^ >> HINT: Use the escape string syntax for escapes, e.g., E'\r\n'. Anton> PostgreSQL. Perhaps you're trying to save that text in a Anton> database? Yes, thanks. I am. Is it safe to just ignore the warnings, or do I need to run some function over the strings before saving, and the reverse when restoring? -- Colin Adams Preston Lancashire
participants (2)
-
Anton van Straaten
-
Colin Paul Adams