Closed rnevius closed 4 years ago
Removing the escaping will cause the _
and %
to get picked up by the SQL query and will break searching for tags that contain those two.
We could just escape the backslash also
text_escaped = text.replace("\\", "\\\\").replace("%", "\\%").replace("_", "\\_")
Also adds a test case for
:help /\<
.Resolves #16