Skip to content

Commit

Permalink
Made Metadata and Notes variable names, per #8
Browse files Browse the repository at this point in the history
  • Loading branch information
melat0nin committed Jun 14, 2020
1 parent 44ef27a commit 4ac43ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chrome/content/roamexport.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Zotero.RoamExport = Zotero.RoamExport || new class {
getItemMetadata(item) {
var metadata = {},
itemType = this.getItemType(item);
metadata.string = "Metadata";
metadata.string = "Metadata::";
metadata.heading = 3;
metadata.children = [];
if (item.getCreators().length > 0) {
Expand Down Expand Up @@ -205,7 +205,7 @@ Zotero.RoamExport = Zotero.RoamExport || new class {
"<u>":"","</u>":"","<em>":"__","</em>":"__","<blockquote>":"> ","</blockquote>":""},
re = new RegExp(Object.keys(mapObj).join("|"),"gi");

notes.string = "Notes";
notes.string = "Notes::";
notes.heading = 3;
notes.children = [];

Expand Down

0 comments on commit 4ac43ff

Please sign in to comment.