Sha256: 17c21080bde00d84e402251e159745fbb8d17b73072b5169832dc9e6920ea28e

Contents?: true

Size: 1.5 KB

Versions: 21

Compression:

Stored size: 1.5 KB

Contents

---
layout: null
---
{% assign first = true %}
[
{% for doc in site.docs %}
    {% if doc.title != null and doc.title != empty %}
    {% unless first %},{% endunless %}{
        "title": {{doc.title | jsonify}},
        "search_title": {{doc.search_title | jsonify}},
        "content": {{doc.content | markdownify | strip_html | replace:'├','' | replace:'└','' | replace:'─','' | replace:'│','' | jsonify}},
        "link": "{{ site.baseurl }}{{ doc.url }}",
        "search_omit": "{{ doc.search_omit }}"
    }
    {% assign first = false %}
    {% endif %}
{% endfor %}

{% for post in site.posts %}
    {% if post.title != null and post.title != empty %}
    {% unless first %},{% endunless %}{
        "title": {{post.title | jsonify}},
        "search_title": {{doc.search_title | jsonify}},
        "content": {{post.content | markdownify | strip_html | jsonify}},
        "link": "{{ site.baseurl }}{{ post.url }}",
        "search_omit": "{{ post.search_omit }}"
    }
    {% assign first = false %}
    {% endif %}
{% endfor %}

{% for page in site.pages %}
    {% if page.title != null and page.title != empty %}
    {% unless first %},{% endunless %}{
        "title": {{page.title | jsonify}},
        "search_title": {{doc.search_title | jsonify}},
        "content": {{page.content | markdownify | strip_html | jsonify}},
        "link": "{{ site.baseurl }}{{ page.url | replace: 'index.html', '' }}",
        "search_omit": "{{ page.search_omit }}"
    }
    {% assign first = false %}
    {% endif %}
{% endfor %}
]

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
kubes-0.9.3 docs/search/data.json
kubes-0.9.2 docs/search/data.json
kubes-0.9.1 docs/search/data.json
kubes-0.9.0 docs/search/data.json
kubes-0.8.10 docs/search/data.json
kubes-0.8.9 docs/search/data.json
kubes-0.8.8 docs/search/data.json
kubes-0.8.7 docs/search/data.json
kubes-0.8.6 docs/search/data.json
kubes-0.8.5 docs/search/data.json
kubes-0.8.4 docs/search/data.json
kubes-0.8.3 docs/search/data.json
kubes-0.8.2 docs/search/data.json
kubes-0.8.1 docs/search/data.json
kubes-0.8.0 docs/search/data.json
kubes-0.7.10 docs/search/data.json
kubes-0.7.9 docs/search/data.json
kubes-0.7.8 docs/search/data.json
kubes-0.7.7 docs/search/data.json
kubes-0.7.6 docs/search/data.json