Can we use HTML in QuickAdd suggester?

Hello,
Is there a change that I can use HTML tags in the QuickAdd suggester?
I would like to render a list similar to the Library suggestor from the Citations plugin (i.e. including the citekey and the author). Using the respective classes, then one could create the elements for the suggester like this:

...
        return `
		<div class="zoteroResult">
		<span class="zoteroTitle">`+item.title+`</span>
		<span class="zoteroCitekey">`+entry+`</span>
		<span class="zoteroAuthors">`+item.authorString+`</span></div>
        `
...

Is this somehow possible? Currently, these HTML tags are rendered as strings.
Alternatively, can we use or call the Citations suggester itself and get the return to use it in a QuickAdd script?
Thanks a lot in advance!

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.