mirror of
https://github.com/thangisme/notes.git
synced 2025-02-21 06:57:46 -05:00
Add search namespace
This commit is contained in:
parent
146b9238cc
commit
3ee6887c51
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user