blob: 8784541dd2b4f9e396359b255627a6e2ab4b1db5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
---
---
// data
var pages = [
{% for post in site.posts %}
{
"id": "{{ post.url | slufigy }}",
"title": {{ post.title | jsonify }},
"content": {{ post.content | strip_html | jsonify }},
"url": "{{ post.url | xml_escape }}"
}
{% unless forloop.last %},{% endunless %}
{% endfor %}
];
// index
var idx = lunr(function () {
this.ref('url');
this.field('title');
this.field('content');
pages.forEach(function (doc) {
this.add(doc);
}, this);
});
function do_search(queryterm) {
return idx.search(queryterm);
}
|