Use actual tab character in replace for search

The `^t` wasn't working but an actual tab did
This commit is contained in:
Luke Kysow
2016-09-12 16:56:57 -07:00
parent bbd495a3ec
commit 4765c5442f

View File

@ -35,7 +35,7 @@ I've found that include the `body` field in the search creates too many problems
{% raw %}
```json
"body": "{{ page.content | strip_html | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' | replace: '^t', ' ' }}",
"body": "{{ page.content | strip_html | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' | replace: ' ', ' ' }}",
```
{% endraw %}