define([],function(){return{getNoResultHtml:function({html}){return html`

${algoliaConfig.translations.noResults}

`;},getHeaderHtml:function({section}){return section.label;},getItemHtml:function({item,components,html}){return html`
${this.safeHighlight(components, item, "name")}
${this.safeHighlight(components, item, "content")}
`;},getFooterHtml:function(){return"";},safeHighlight:function(components,hit,attribute){const highlightResult=hit._highlightResult[attribute];if(!highlightResult)return'';try{return components.Highlight({hit,attribute});}catch(e){return'';}}};});