(ch)
| 11204 | escapedEndRegexp = new RegExp(endSymbol.replace(/./g, escape), 'g'); |
| 11205 | |
| 11206 | function escape(ch) { |
| 11207 | return '\\\\\\' + ch; |
| 11208 | } |
| 11209 | |
| 11210 | function unescapeText(text) { |
| 11211 | return text.replace(escapedStartRegexp, startSymbol). |