gitextract_kxmhha1p/ ├── .gitattributes ├── .github/ │ ├── DISCUSSION_TEMPLATE/ │ │ └── note-templates.yml │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── dependabot.yml │ ├── renovate.json │ └── workflows/ │ ├── CI.yml │ ├── issuebot.yml │ └── tgbot.yml ├── .gitignore ├── .prettierignore ├── .vscode/ │ ├── launch.json │ ├── settings.json │ └── toolkit.code-snippets ├── LICENSE ├── README.md ├── addon/ │ ├── bootstrap.js │ ├── chrome/ │ │ └── content/ │ │ ├── bubbleMap.html │ │ ├── docxExport.html │ │ ├── exportNotes.xhtml │ │ ├── imageViewer.html │ │ ├── lib/ │ │ │ ├── css/ │ │ │ │ ├── dx.light.compact.css │ │ │ │ └── github-markdown.css │ │ │ └── js/ │ │ │ ├── SaxonJS2.rt.js │ │ │ ├── dx.all.js │ │ │ ├── go.js │ │ │ ├── mml2omml.sef.json │ │ │ ├── printUtils.js │ │ │ └── ztypes.d.ts │ │ ├── linkCreator.xhtml │ │ ├── mindMap.html │ │ ├── preferences.xhtml │ │ ├── printTemplate.xhtml │ │ ├── relationGraph.html │ │ ├── styles/ │ │ │ ├── editor.css │ │ │ ├── exportNotes.css │ │ │ ├── linkCreator/ │ │ │ │ ├── inboundCreator.css │ │ │ │ ├── linkCreator.css │ │ │ │ ├── noteOutline.css │ │ │ │ ├── notePicker.css │ │ │ │ ├── notePreview.css │ │ │ │ ├── outboundCreator.css │ │ │ │ └── toolbar.css │ │ │ ├── syncDiff.css │ │ │ ├── templateEditor.css │ │ │ ├── templatePicker.css │ │ │ └── workspace/ │ │ │ ├── context.css │ │ │ ├── details.css │ │ │ ├── outline.css │ │ │ ├── related.css │ │ │ ├── relation.css │ │ │ └── workspace.css │ │ ├── syncDiff.xhtml │ │ ├── syncManager.xhtml │ │ ├── templateEditor.xhtml │ │ ├── templatePicker.xhtml │ │ ├── treeView.html │ │ └── workspaceWindow.xhtml │ ├── locale/ │ │ ├── de/ │ │ │ ├── addon.ftl │ │ │ ├── exportNotes.ftl │ │ │ ├── linkCreator.ftl │ │ │ ├── mainWindow.ftl │ │ │ ├── notePreview.ftl │ │ │ ├── noteRelation.ftl │ │ │ ├── outline.ftl │ │ │ ├── preferences.ftl │ │ │ ├── syncDiff.ftl │ │ │ ├── syncManager.ftl │ │ │ ├── templateEditor.ftl │ │ │ └── workspaceWindow.ftl │ │ ├── en-US/ │ │ │ ├── addon.ftl │ │ │ ├── exportNotes.ftl │ │ │ ├── linkCreator.ftl │ │ │ ├── mainWindow.ftl │ │ │ ├── notePreview.ftl │ │ │ ├── noteRelation.ftl │ │ │ ├── outline.ftl │ │ │ ├── preferences.ftl │ │ │ ├── syncDiff.ftl │ │ │ ├── syncManager.ftl │ │ │ ├── templateEditor.ftl │ │ │ └── workspaceWindow.ftl │ │ ├── it-IT/ │ │ │ ├── addon.ftl │ │ │ ├── exportNotes.ftl │ │ │ ├── linkCreator.ftl │ │ │ ├── mainWindow.ftl │ │ │ ├── notePreview.ftl │ │ │ ├── noteRelation.ftl │ │ │ ├── outline.ftl │ │ │ ├── preferences.ftl │ │ │ ├── syncDiff.ftl │ │ │ ├── syncManager.ftl │ │ │ ├── templateEditor.ftl │ │ │ └── workspaceWindow.ftl │ │ ├── ru-RU/ │ │ │ ├── addon.ftl │ │ │ ├── export.ftl │ │ │ ├── exportNotes.ftl │ │ │ ├── linkCreator.ftl │ │ │ ├── mainWindow.ftl │ │ │ ├── notePreview.ftl │ │ │ ├── noteRelation.ftl │ │ │ ├── outline.ftl │ │ │ ├── preferences.ftl │ │ │ ├── syncDiff.ftl │ │ │ ├── syncManager.ftl │ │ │ ├── templateEditor.ftl │ │ │ └── workspaceWindow.ftl │ │ ├── tr-TR/ │ │ │ ├── addon.ftl │ │ │ ├── exportNotes.ftl │ │ │ ├── linkCreator.ftl │ │ │ ├── mainWindow.ftl │ │ │ ├── notePreview.ftl │ │ │ ├── noteRelation.ftl │ │ │ ├── outline.ftl │ │ │ ├── preferences.ftl │ │ │ ├── syncDiff.ftl │ │ │ ├── syncManager.ftl │ │ │ ├── templateEditor.ftl │ │ │ └── workspaceWindow.ftl │ │ └── zh-CN/ │ │ ├── addon.ftl │ │ ├── exportNotes.ftl │ │ ├── linkCreator.ftl │ │ ├── mainWindow.ftl │ │ ├── notePreview.ftl │ │ ├── noteRelation.ftl │ │ ├── outline.ftl │ │ ├── preferences.ftl │ │ ├── syncDiff.ftl │ │ ├── syncManager.ftl │ │ ├── templateEditor.ftl │ │ └── workspaceWindow.ftl │ ├── manifest.json │ └── prefs.js ├── docs/ │ └── about-note-template.md ├── package.json ├── scripts/ │ ├── docx/ │ │ ├── build-mml2omml.sh │ │ └── mml2omml.xsl │ └── types/ │ ├── bundleTypes.mjs │ └── templates.d.ts ├── src/ │ ├── addon.ts │ ├── api.ts │ ├── elements/ │ │ ├── base.ts │ │ ├── linkCreator/ │ │ │ ├── inboundCreator.ts │ │ │ ├── notePicker.ts │ │ │ ├── notePreview.ts │ │ │ ├── outboundCreator.ts │ │ │ └── outlinePicker.ts │ │ └── workspace/ │ │ ├── contextPane.ts │ │ ├── detailsPane.ts │ │ ├── outlinePane.ts │ │ ├── related.ts │ │ └── workspace.ts │ ├── extras/ │ │ ├── convert.ts │ │ ├── convertWorker/ │ │ │ ├── env.ts │ │ │ └── main.ts │ │ ├── convertWorker.ts │ │ ├── customElements.ts │ │ ├── docxWorker.ts │ │ ├── editor/ │ │ │ ├── columnResizing.ts │ │ │ ├── editorStrings.ts │ │ │ ├── linkPreview.ts │ │ │ ├── magicKey.ts │ │ │ ├── markdownPaste.ts │ │ │ ├── nodeViews.ts │ │ │ ├── plugins.ts │ │ │ └── popup.ts │ │ ├── editorScript.ts │ │ ├── exportNotes.ts │ │ ├── linkCreator.ts │ │ ├── parsingWorker.ts │ │ ├── relationWorker.ts │ │ ├── syncDiff.ts │ │ ├── templatePicker.ts │ │ └── workspaceWindow.ts │ ├── hooks.ts │ ├── index.ts │ ├── modules/ │ │ ├── annotationNote.ts │ │ ├── createNote.ts │ │ ├── editor/ │ │ │ ├── image.ts │ │ │ ├── initalize.ts │ │ │ ├── inject.ts │ │ │ ├── menu.ts │ │ │ ├── plugins.ts │ │ │ ├── popup.ts │ │ │ └── toolbar.ts │ │ ├── export/ │ │ │ ├── api.ts │ │ │ ├── docx.ts │ │ │ ├── exportWindow.ts │ │ │ ├── freemind.ts │ │ │ ├── latex.ts │ │ │ ├── markdown.ts │ │ │ └── pdf.ts │ │ ├── imageViewer.ts │ │ ├── import/ │ │ │ └── markdown.ts │ │ ├── menu.ts │ │ ├── noteLink.ts │ │ ├── notify.ts │ │ ├── patches/ │ │ │ ├── exportItems.ts │ │ │ ├── noteEditor.ts │ │ │ └── notes.ts │ │ ├── preferenceWindow.ts │ │ ├── sync/ │ │ │ ├── api.ts │ │ │ ├── diffWindow.ts │ │ │ ├── hooks.ts │ │ │ ├── infoWindow.ts │ │ │ └── managerWindow.ts │ │ ├── template/ │ │ │ ├── api.ts │ │ │ ├── controller.ts │ │ │ ├── data.ts │ │ │ ├── editorWindow.ts │ │ │ ├── monacoEditor.ts │ │ │ ├── picker.ts │ │ │ ├── preview.ts │ │ │ └── refresh.ts │ │ ├── userGuide.ts │ │ └── workspace/ │ │ ├── content.ts │ │ ├── link.ts │ │ ├── preview.ts │ │ ├── relation.ts │ │ ├── tab.ts │ │ └── window.ts │ └── utils/ │ ├── annotation.ts │ ├── citation.ts │ ├── config.ts │ ├── convert.ts │ ├── editor.ts │ ├── hint.ts │ ├── itemPicker.ts │ ├── link.ts │ ├── linkCreator.ts │ ├── locale.ts │ ├── note.ts │ ├── parsing.ts │ ├── prefs.ts │ ├── relation.ts │ ├── str.ts │ ├── templatePicker.ts │ ├── wait.ts │ ├── window.ts │ ├── workspace.ts │ └── ztoolkit.ts ├── test/ │ ├── tests/ │ │ ├── export.spec.ts │ │ ├── import.spec.ts │ │ ├── startup.spec.ts │ │ ├── template.spec.ts │ │ └── workspace.spec.ts │ ├── tsconfig.json │ ├── typings/ │ │ ├── editor.d.ts │ │ └── global.d.ts │ └── utils/ │ ├── global.ts │ ├── io.ts │ ├── note.ts │ ├── status.ts │ ├── wait.ts │ └── window.ts ├── tsconfig.json ├── typings/ │ ├── editor.d.ts │ ├── global.d.ts │ ├── i10n.d.ts │ ├── note.d.ts │ ├── prefs.d.ts │ └── template.d.ts └── zotero-plugin.config.ts