aboutsummaryrefslogtreecommitdiff
path: root/docs/search.en.json
blob: 213c8d965d1777c7e7aa9cd3d5a3d00ccd470a6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
layout: none
---
[
{% assign pages = site.pages | where_exp: "p", "p.title != nil" | where: "lang", "en" %}
{% for page in pages %}
  {
    "title": "{{ page.title | escape }}",
    "url": "{{ site.baseurl }}{{ page.url }}",
    "content": {{ page.content | markdownify | strip_html | jsonify }}
  }{% unless forloop.last %},{% endunless %}
{% endfor %}
]