18 lines
608 B
HTML
18 lines
608 B
HTML
<script>
|
|
window.addEventListener('DOMContentLoaded', function() {
|
|
// DocSearch Config
|
|
docsearch({
|
|
container: '#docsearch',
|
|
appId: '{{ .Site.Params.docsearch.appID }}',
|
|
apiKey: '{{ .Site.Params.docsearch.apiKey }}',
|
|
indexName: '{{ .Site.Params.docsearch.indexName }}',
|
|
placeholder: 'Search Documentation',
|
|
translations: {
|
|
button: {
|
|
buttonText: '{{ i18n "search_title" }}',
|
|
buttonAriaLabel: 'Search',
|
|
}
|
|
}
|
|
});
|
|
});
|
|
</script> |