~xdavidwu/xdavidwu.link

35a04b677d434275c6222c03a11cb4980faaf04f — Michael Rose 6 years ago 278dc9e + 181aa38
Merge branch 'master' of https://github.com/mmistakes/minimal-mistakes
1 files changed, 28 insertions(+), 24 deletions(-)

M assets/js/lunr-en.js
M assets/js/lunr-en.js => assets/js/lunr-en.js +28 -24
@@ 14,14 14,16 @@ var idx = lunr(function () {
{% for c in site.collections %}
  {% assign docs = c.docs %}
  {% for doc in docs %}
    idx.add({
      title: {{ doc.title | jsonify }},
      excerpt: {{ doc.content | strip_html | truncatewords: 20 | jsonify }},
      categories: {{ doc.categories | jsonify }},
      tags: {{ doc.tags | jsonify }},
      id: {{ count }}
    });
    {% assign count = count | plus: 1 %}
    {% unless doc.search == false %}
      idx.add({
        title: {{ doc.title | jsonify }},
        excerpt: {{ doc.content | strip_html | truncatewords: 20 | jsonify }},
        categories: {{ doc.categories | jsonify }},
        tags: {{ doc.tags | jsonify }},
        id: {{ count }}
      });
      {% assign count = count | plus: 1 %}
    {% endunless %}
  {% endfor %}
{% endfor %}



@@ 34,22 36,24 @@ var store = [
    {% endif %}
    {% assign docs = c.docs %}
    {% for doc in docs %}
      {% if doc.header.teaser %}
        {% capture teaser %}{{ doc.header.teaser }}{% endcapture %}
      {% else %}
        {% assign teaser = site.teaser %}
      {% endif %}
      {
        "title": {{ doc.title | jsonify }},
        "url": {{ doc.url | absolute_url | jsonify }},
        "excerpt": {{ doc.content | strip_html | truncatewords: 20 | jsonify }},
        "teaser":
          {% if teaser contains "://" %}
            {{ teaser | jsonify }}
          {% else %}
            {{ teaser | absolute_url | jsonify }}
          {% endif %}
      }{% unless forloop.last and l %},{% endunless %}
      {% unless doc.search == false %}
        {% if doc.header.teaser %}
          {% capture teaser %}{{ doc.header.teaser }}{% endcapture %}
        {% else %}
          {% assign teaser = site.teaser %}
        {% endif %}
        {
          "title": {{ doc.title | jsonify }},
          "url": {{ doc.url | absolute_url | jsonify }},
          "excerpt": {{ doc.content | strip_html | truncatewords: 20 | jsonify }},
          "teaser":
            {% if teaser contains "://" %}
              {{ teaser | jsonify }}
            {% else %}
              {{ teaser | absolute_url | jsonify }}
            {% endif %}
        }{% unless forloop.last and l %},{% endunless %}
      {% endunless %}
    {% endfor %}
  {% endfor %}]