The following regexp uses a lot of recursion every time the content has a lot of double quotes: ``` (?:"([^"\\\\]*(?:\\\\.[^"\\\\]*)*)" ``` Basically it is causing a crash in windows due to stack overflow on large inputs (~20k of escaped html in the field).