We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c92495 commit 79eb7ddCopy full SHA for 79eb7dd
scanpydoc/theme/layout.html
@@ -29,8 +29,11 @@
29
apiKey: '{{ theme_docsearch_key }}',
30
indexName: '{{ theme_docsearch_index }}',
31
inputSelector: '#rtd-search-form > input[name="q"]',
32
- algoliaOptions: { facetFilters: ['version:{{ theme_docsearch_doc_version or safe_version }}'] },
33
- debug: false,
+ algoliaOptions: {
+ facetFilters: ['version:{{ theme_docsearch_doc_version or safe_version }}'],
34
+ hitsPerPage: 10,
35
+ },
36
+ debug: {{ theme_docsearch_debug }},
37
}))
38
</script>
39
{% endif %}
scanpydoc/theme/theme.conf
@@ -22,3 +22,4 @@ docsearch_key =
22
docsearch_index =
23
docsearch_doc_version =
24
docsearch_js_version = 2.6
25
+docsearch_debug = false
0 commit comments