Fuse js implementation not working initially #479
-
Beta Was this translation helpful? Give feedback.
Answered by
stereobooster
Sep 6, 2023
Replies: 2 comments
-
Looks like this interpolation didn't work results.forEach(function (value, key) {
resultsHTML =
resultsHTML +
`<li class="mb-2">
<a class="flex items-center px-3 py-2 rounded-md appearance-none bg-neutral-100 dark:bg-neutral-700 focus:bg-primary-100 hover:bg-primary-100 dark:hover:bg-primary-900 dark:focus:bg-primary-900 focus:outline-dotted focus:outline-transparent focus:outline-2" href="${value.item.permalink}" tabindex="0">
<div class="grow">
<div class="-mb-1 text-lg font-bold">${value.item.title}</div>
<div class="text-sm text-neutral-500 dark:text-neutral-400">${value.item.section}${value.item.date == null ? '' : `<span class="px-2 text-primary-500">·</span>${value.item.date}</span>`}</div>
<div class="text-sm italic">${value.item.summary}</div>
</div>
<div class="ml-2 ltr:block rtl:hidden text-neutral-500">→</div>
<div class="mr-2 ltr:hidden rtl:block text-neutral-500">←</div>
</a>
</li>`;
}); Any chance that you replaced back tick (`) with quote (')? |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
studiosd
-
Thanks stereobooster! I had a different typo in the section you pointed out, so that solved my problem. Thank you especially for taking a look at such an old question. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like this interpolation didn't work