Hi Dan, thanks for this update. I'm trying to set the comments before the citation, but it doesn't work. Am I doing something wrong? Here is the string I use: <p>{{highlight quotes='true'}}<b>{{comment}}</b>{{citation}}</p> but the outcome is still citation, then comment when I import the annotation into the note. Thanks!
extensions.zotero.annotations.noteTemplates.highlight I'm pretty sure its the right one, as I get the comment to be bold with the <b> tag, but not it doesn't show the right order...
Yes, exactly. But I now solved it. What I wanted to get is:
This is my comment “This is highlighted text” (Smith et al., 2022, p.1).
Which I now get by using: </p<b> {{comment} </b><BR>{{highlight quotes='true'}} {{citation}}</p>
I mistakenly believed that "{{highlight quotes='true'}}" was a condition, but in fact it's both a condition and a variable, so it doesn't have to be in the beginning....
<p>{{highlight quotes='true'}}<b>{{comment}}</b>{{citation}}</p>
but the outcome is still citation, then comment when I import the annotation into the note. Thanks!<b>
tag, but not it doesn't show the right order...<p><b>{{comment}}</b>{{highlight quotes='true'}}{{citation}}</p>
“This is highlighted text”This is my comment(Smith et al., 2022, p.1)
This is my comment
“This is highlighted text” (Smith et al., 2022, p.1).
Which I now get by using:
</p<b> {{comment} </b><BR>{{highlight quotes='true'}} {{citation}}</p>
I mistakenly believed that "
{{highlight quotes='true'}}
" was a condition, but in fact it's both a condition and a variable, so it doesn't have to be in the beginning....quotes= "true"
just indicate that the highlights are in quotes then?