1
0
mirror of https://github.com/thangisme/notes.git synced 2024-07-27 00:14:23 -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
touch search-data.json
namespace :search do
task :init do
touch search-data.json
File.open('search-data.json', 'w') do |f|
f.puts '
---
---
{
{% for page in site.html_pages %}"{{ forloop.index0 }}": {
"id": "{{ forloop.index0 }}",
"title": "{{ page.title | xml_escape }}",
"content": "{{ page.content | markdownify | strip_html | xml_escape | remove: "Table of contents" | remove: page.title | strip_newlines | replace: "\", " "}}",
"url": "{{ page.url | xml_escape }}"
}{% if forloop.last %}{% else %},
{% endif %}{% endfor %}
}'
File.open('search-data.json', 'w') do |f|
f.puts '
---
---
{
{% for page in site.html_pages %}"{{ forloop.index0 }}": {
"id": "{{ forloop.index0 }}",
"title": "{{ page.title | xml_escape }}",
"content": "{{ page.content | markdownify | strip_html | xml_escape | remove: "Table of contents" | remove: page.title | strip_newlines | replace: "\", " "}}",
"url": "{{ page.url | xml_escape }}"
}{% if forloop.last %}{% else %},
{% endif %}{% endfor %}
}'
end
end
end