BBT cannot export references of type "standard". #2542
Unanswered
MysticDragonfly
asked this question in
Q&A
Replies: 1 comment
-
I'd much prefer it if you would file a bug. |
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
-
I won't file a bug, but I hope to share the solution to the problem with you in this way.
BBT cannot export references of type "standard". I opened the ../workder/zotero.js file, and after searching and comparing, I found that the "standard" item was missing in some places. Specifically: 128764 lines, 131569 lines. Documents of type "standard" will be marked as "msic" if not modified. After supplementing these two omissions, the documents marked with "standard" can be exported correctly.
corrected code:
line 128764 :
types: /* @PURE */ new Set(["article", "book", "bookinbook", "booklet", "collection", "inbook", "incollection", "inproceedings", "inreference", "manual", "misc", "mvbook", "mvcollection", "online", "patent", "periodical", "proceedings", "reference", "report", "set", "suppbook", "suppcollection", "suppperiodical", "thesis", "unpublished", "standard"]),
lines 131568-131570:
report: "techreport",
standard: "standard",
statute: "misc",
Beta Was this translation helpful? Give feedback.
All reactions