When i highlight a text in zotero, I like to tag my highlights as I read. However, when I click on the "Add note from annotations", it does not include my tags. Why is this happening?
Thank you. I'm not an expert user of HTML. What is the code I need to copy to include tags and comments in my exported annotations? I tried a few lines of code from the link you provided but it isn't working for me. Just the code please?
<blockquote>{{highlight}}</blockquote><p>{{citation}}</p>{{if comment}}<p>{{comment}}</p>{{endif}}{{if tags}}<p>#{{tags join=' #'}}</p>{{endif}}
<blockquote>{{highlight}}</blockquote>
will add the highlight text in blockquote<p>{{citation}}</p>
will add the citation{{if comment}}<p>{{comment}}</p>{{endif}}
will add a comment if exists{{if tags}}<p>#{{tags join=' #'}}</p>{{endif}}
will add tags if exist, separated by " #"