Anders429 / word_filter

A Word Filter for filtering text.
Apache License 2.0
1 stars 0 forks source link

Handle characters that must be escaped #38

Closed Anders429 closed 3 years ago

Anders429 commented 3 years ago

Some characters, such as ', \, and the new line character, must be escaped to be represented in the generated code. These currently will not compile.

Anders429 commented 3 years ago

This has been fixed and is currently on the const branch. char::escape_default() was the solution.