diff --git a/assets/js/search-data.json b/assets/js/search-data.json
new file mode 100644
index 0000000000000000000000000000000000000000..50a4b9f489a2d69a3b45b79ed00aeca29b2718ae
--- /dev/null
+++ b/assets/js/search-data.json
@@ -0,0 +1,12 @@
+---
+---
+{
+  {% 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' | strip_newlines | replace: '\', ' ' }}",
+    "url": "{{ page.url | absolute_url | xml_escape }}",
+    "relUrl": "{{ page.url | xml_escape }}"
+  }{% if forloop.last %}{% else %},
+  {% endif %}{% endfor %}
+}
diff --git a/lib/tasks/search.rake b/lib/tasks/search.rake
index 0e433b2aea3062f049f46a5e489d67891a3ab835..fbaf94fcbfc77d282c628e85bb5f77155a28e0be 100644
--- a/lib/tasks/search.rake
+++ b/lib/tasks/search.rake
@@ -4,7 +4,7 @@ namespace :search do
     puts 'Creating search data json file...'
     touch 'assets/js/search-data.json'
     content = %Q[{{ page.content | markdownify | strip_html | xml_escape | remove: 'Table of contents' | strip_newlines | replace: '\\', ' ' }}]
-
+    puts 'Done.'
     puts 'Generating content...'
 
     File.open('assets/js/search-data.json', 'w') do |f|