Zotero not exporting tags

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?
  • edited February 13, 2023
    Please see the bottom of Note Templates.
  • 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?
  • I am not an expert either. Everything is well explained in the page I linked. To add tags to note from annotations, you can use the following:

    <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 " #"
Sign In or Register to comment.