1
0
mirror of https://github.com/thangisme/notes.git synced 2024-10-04 22:13:39 -04:00

Add search namespace

This commit is contained in:
Patrick Marsceill 2017-06-08 14:24:29 -04:00
parent 146b9238cc
commit 3ee6887c51
No known key found for this signature in database
GPG Key ID: AEAF30C14952BCC5

View File

@ -1,18 +1,20 @@
task :init do namespace :search do
touch search-data.json task :init do
touch search-data.json
File.open('search-data.json', 'w') do |f| File.open('search-data.json', 'w') do |f|
f.puts ' f.puts '
--- ---
--- ---
{ {
{% for page in site.html_pages %}"{{ forloop.index0 }}": { {% for page in site.html_pages %}"{{ forloop.index0 }}": {
"id": "{{ forloop.index0 }}", "id": "{{ forloop.index0 }}",
"title": "{{ page.title | xml_escape }}", "title": "{{ page.title | xml_escape }}",
"content": "{{ page.content | markdownify | strip_html | xml_escape | remove: "Table of contents" | remove: page.title | strip_newlines | replace: "\", " "}}", "content": "{{ page.content | markdownify | strip_html | xml_escape | remove: "Table of contents" | remove: page.title | strip_newlines | replace: "\", " "}}",
"url": "{{ page.url | xml_escape }}" "url": "{{ page.url | xml_escape }}"
}{% if forloop.last %}{% else %}, }{% if forloop.last %}{% else %},
{% endif %}{% endfor %} {% endif %}{% endfor %}
}' }'
end
end end
end end