├── .env.example ├── .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 │ │ ├── icons │ │ ├── editor │ │ │ ├── blockMath.svg │ │ │ ├── blockScript.svg │ │ │ ├── bold.svg │ │ │ ├── bullet.svg │ │ │ ├── code.svg │ │ │ ├── h1.svg │ │ │ ├── h2.svg │ │ │ ├── h3.svg │ │ │ ├── inlineMath.svg │ │ │ ├── inlineScript.svg │ │ │ ├── italic.svg │ │ │ ├── link.svg │ │ │ ├── math.svg │ │ │ ├── monospaced.svg │ │ │ ├── numbered.svg │ │ │ ├── quote.svg │ │ │ ├── strikethrough.svg │ │ │ ├── subscript.svg │ │ │ ├── superscript.svg │ │ │ ├── table.svg │ │ │ ├── textColor.svg │ │ │ └── underline.svg │ │ ├── favicon.png │ │ ├── favicon@0.5x.png │ │ ├── full-16.svg │ │ ├── icon-linear-20.svg │ │ ├── inbound-link-16.svg │ │ ├── inbound-link-20.svg │ │ ├── knowledge-app.png │ │ ├── markdown-16.svg │ │ ├── outbound-link-16.svg │ │ ├── outbound-link-20.svg │ │ ├── outline-20.svg │ │ ├── relation-16.svg │ │ ├── relation-20.svg │ │ └── save-20.svg │ │ ├── imageViewer.html │ │ ├── lib │ │ ├── css │ │ │ ├── dx.light.compact.css │ │ │ ├── fonts │ │ │ │ ├── KaTeX_AMS-Regular.ttf │ │ │ │ ├── KaTeX_AMS-Regular.woff │ │ │ │ ├── KaTeX_AMS-Regular.woff2 │ │ │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ │ │ ├── KaTeX_Fraktur-Bold.woff │ │ │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ │ │ ├── KaTeX_Fraktur-Regular.woff │ │ │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ │ │ ├── KaTeX_Main-Bold.ttf │ │ │ │ ├── KaTeX_Main-Bold.woff │ │ │ │ ├── KaTeX_Main-Bold.woff2 │ │ │ │ ├── KaTeX_Main-BoldItalic.ttf │ │ │ │ ├── KaTeX_Main-BoldItalic.woff │ │ │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ │ │ ├── KaTeX_Main-Italic.ttf │ │ │ │ ├── KaTeX_Main-Italic.woff │ │ │ │ ├── KaTeX_Main-Italic.woff2 │ │ │ │ ├── KaTeX_Main-Regular.ttf │ │ │ │ ├── KaTeX_Main-Regular.woff │ │ │ │ ├── KaTeX_Main-Regular.woff2 │ │ │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ │ │ ├── KaTeX_Math-BoldItalic.woff │ │ │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ │ │ ├── KaTeX_Math-Italic.ttf │ │ │ │ ├── KaTeX_Math-Italic.woff │ │ │ │ ├── KaTeX_Math-Italic.woff2 │ │ │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ │ │ ├── KaTeX_SansSerif-Bold.woff │ │ │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ │ │ ├── KaTeX_SansSerif-Italic.woff │ │ │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ │ │ ├── KaTeX_SansSerif-Regular.woff │ │ │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ │ │ ├── KaTeX_Script-Regular.ttf │ │ │ │ ├── KaTeX_Script-Regular.woff │ │ │ │ ├── KaTeX_Script-Regular.woff2 │ │ │ │ ├── KaTeX_Size1-Regular.ttf │ │ │ │ ├── KaTeX_Size1-Regular.woff │ │ │ │ ├── KaTeX_Size1-Regular.woff2 │ │ │ │ ├── KaTeX_Size2-Regular.ttf │ │ │ │ ├── KaTeX_Size2-Regular.woff │ │ │ │ ├── KaTeX_Size2-Regular.woff2 │ │ │ │ ├── KaTeX_Size3-Regular.ttf │ │ │ │ ├── KaTeX_Size3-Regular.woff │ │ │ │ ├── KaTeX_Size3-Regular.woff2 │ │ │ │ ├── KaTeX_Size4-Regular.ttf │ │ │ │ ├── KaTeX_Size4-Regular.woff │ │ │ │ ├── KaTeX_Size4-Regular.woff2 │ │ │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ │ │ ├── KaTeX_Typewriter-Regular.woff │ │ │ │ └── KaTeX_Typewriter-Regular.woff2 │ │ │ ├── github-markdown.css │ │ │ ├── icons │ │ │ │ ├── dxicons.ttf │ │ │ │ ├── dxicons.woff │ │ │ │ ├── dxicons.woff2 │ │ │ │ ├── dxiconsios.eot │ │ │ │ ├── dxiconsios.ttf │ │ │ │ ├── dxiconsios.woff │ │ │ │ ├── dxiconsios.woff2 │ │ │ │ ├── dxiconsmaterial.ttf │ │ │ │ ├── dxiconsmaterial.woff │ │ │ │ └── dxiconsmaterial.woff2 │ │ │ └── katex.min.css │ │ └── js │ │ │ ├── SaxonJS2.rt.js │ │ │ ├── d3.v7.min.js │ │ │ ├── dx.all.js │ │ │ ├── go.js │ │ │ ├── jquery.min.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 │ ├── 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 └── res │ └── teaser.png ├── 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.ts │ ├── convertWorker │ │ ├── env.ts │ │ └── main.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 │ │ ├── canEdit.ts │ │ ├── exportItems.ts │ │ ├── openTabMenu.ts │ │ └── viewItems.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 /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | addon/chrome/content/lib/** linguist-vendored 2 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/note-templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.github/DISCUSSION_TEMPLATE/note-templates.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/issuebot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.github/workflows/issuebot.yml -------------------------------------------------------------------------------- /.github/workflows/tgbot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.github/workflows/tgbot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/toolkit.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/.vscode/toolkit.code-snippets -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/README.md -------------------------------------------------------------------------------- /addon/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/bootstrap.js -------------------------------------------------------------------------------- /addon/chrome/content/bubbleMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/bubbleMap.html -------------------------------------------------------------------------------- /addon/chrome/content/docxExport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/docxExport.html -------------------------------------------------------------------------------- /addon/chrome/content/exportNotes.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/exportNotes.xhtml -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/blockMath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/blockMath.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/blockScript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/blockScript.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/bold.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/bullet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/bullet.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/code.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/h1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/h1.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/h2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/h2.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/h3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/h3.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/inlineMath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/inlineMath.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/inlineScript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/inlineScript.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/italic.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/link.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/math.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/math.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/monospaced.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/monospaced.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/numbered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/numbered.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/quote.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/strikethrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/strikethrough.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/subscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/subscript.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/superscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/superscript.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/table.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/textColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/textColor.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/editor/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/editor/underline.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/favicon.png -------------------------------------------------------------------------------- /addon/chrome/content/icons/favicon@0.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/favicon@0.5x.png -------------------------------------------------------------------------------- /addon/chrome/content/icons/full-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/full-16.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/icon-linear-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/icon-linear-20.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/inbound-link-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/inbound-link-16.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/inbound-link-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/inbound-link-20.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/knowledge-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/knowledge-app.png -------------------------------------------------------------------------------- /addon/chrome/content/icons/markdown-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/markdown-16.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/outbound-link-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/outbound-link-16.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/outbound-link-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/outbound-link-20.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/outline-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/outline-20.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/relation-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/relation-16.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/relation-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/relation-20.svg -------------------------------------------------------------------------------- /addon/chrome/content/icons/save-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/icons/save-20.svg -------------------------------------------------------------------------------- /addon/chrome/content/imageViewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/imageViewer.html -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/dx.light.compact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/dx.light.compact.css -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/github-markdown.css -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/icons/dxicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/icons/dxicons.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/icons/dxicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/icons/dxicons.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/icons/dxicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/icons/dxicons.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/icons/dxiconsios.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/icons/dxiconsios.eot -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/icons/dxiconsios.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/icons/dxiconsios.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/icons/dxiconsios.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/icons/dxiconsios.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/icons/dxiconsios.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/icons/dxiconsios.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/icons/dxiconsmaterial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/icons/dxiconsmaterial.ttf -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/icons/dxiconsmaterial.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/icons/dxiconsmaterial.woff -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/icons/dxiconsmaterial.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/icons/dxiconsmaterial.woff2 -------------------------------------------------------------------------------- /addon/chrome/content/lib/css/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/css/katex.min.css -------------------------------------------------------------------------------- /addon/chrome/content/lib/js/SaxonJS2.rt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/js/SaxonJS2.rt.js -------------------------------------------------------------------------------- /addon/chrome/content/lib/js/d3.v7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/js/d3.v7.min.js -------------------------------------------------------------------------------- /addon/chrome/content/lib/js/dx.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/js/dx.all.js -------------------------------------------------------------------------------- /addon/chrome/content/lib/js/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/js/go.js -------------------------------------------------------------------------------- /addon/chrome/content/lib/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/js/jquery.min.js -------------------------------------------------------------------------------- /addon/chrome/content/lib/js/mml2omml.sef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/js/mml2omml.sef.json -------------------------------------------------------------------------------- /addon/chrome/content/lib/js/printUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/js/printUtils.js -------------------------------------------------------------------------------- /addon/chrome/content/lib/js/ztypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/lib/js/ztypes.d.ts -------------------------------------------------------------------------------- /addon/chrome/content/linkCreator.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/linkCreator.xhtml -------------------------------------------------------------------------------- /addon/chrome/content/mindMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/mindMap.html -------------------------------------------------------------------------------- /addon/chrome/content/preferences.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/preferences.xhtml -------------------------------------------------------------------------------- /addon/chrome/content/printTemplate.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/printTemplate.xhtml -------------------------------------------------------------------------------- /addon/chrome/content/relationGraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/relationGraph.html -------------------------------------------------------------------------------- /addon/chrome/content/styles/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/editor.css -------------------------------------------------------------------------------- /addon/chrome/content/styles/exportNotes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/exportNotes.css -------------------------------------------------------------------------------- /addon/chrome/content/styles/linkCreator/inboundCreator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/linkCreator/inboundCreator.css -------------------------------------------------------------------------------- /addon/chrome/content/styles/linkCreator/linkCreator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/linkCreator/linkCreator.css -------------------------------------------------------------------------------- /addon/chrome/content/styles/linkCreator/noteOutline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/linkCreator/noteOutline.css -------------------------------------------------------------------------------- /addon/chrome/content/styles/linkCreator/notePicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/linkCreator/notePicker.css -------------------------------------------------------------------------------- /addon/chrome/content/styles/linkCreator/notePreview.css: -------------------------------------------------------------------------------- 1 | bn-note-preview { 2 | flex-direction: column; 3 | } 4 | -------------------------------------------------------------------------------- /addon/chrome/content/styles/linkCreator/outboundCreator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/linkCreator/outboundCreator.css -------------------------------------------------------------------------------- /addon/chrome/content/styles/linkCreator/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/linkCreator/toolbar.css -------------------------------------------------------------------------------- /addon/chrome/content/styles/syncDiff.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/syncDiff.css -------------------------------------------------------------------------------- /addon/chrome/content/styles/templateEditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/templateEditor.css -------------------------------------------------------------------------------- /addon/chrome/content/styles/templatePicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/templatePicker.css -------------------------------------------------------------------------------- /addon/chrome/content/styles/workspace/context.css: -------------------------------------------------------------------------------- 1 | bn-context { 2 | min-width: 360px; 3 | } 4 | -------------------------------------------------------------------------------- /addon/chrome/content/styles/workspace/details.css: -------------------------------------------------------------------------------- 1 | bn-details pane-header { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /addon/chrome/content/styles/workspace/outline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/workspace/outline.css -------------------------------------------------------------------------------- /addon/chrome/content/styles/workspace/related.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/workspace/related.css -------------------------------------------------------------------------------- /addon/chrome/content/styles/workspace/relation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/workspace/relation.css -------------------------------------------------------------------------------- /addon/chrome/content/styles/workspace/workspace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/styles/workspace/workspace.css -------------------------------------------------------------------------------- /addon/chrome/content/syncDiff.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/syncDiff.xhtml -------------------------------------------------------------------------------- /addon/chrome/content/syncManager.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/syncManager.xhtml -------------------------------------------------------------------------------- /addon/chrome/content/templateEditor.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/templateEditor.xhtml -------------------------------------------------------------------------------- /addon/chrome/content/templatePicker.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/templatePicker.xhtml -------------------------------------------------------------------------------- /addon/chrome/content/treeView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/treeView.html -------------------------------------------------------------------------------- /addon/chrome/content/workspaceWindow.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/chrome/content/workspaceWindow.xhtml -------------------------------------------------------------------------------- /addon/locale/en-US/addon.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/en-US/addon.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/exportNotes.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/en-US/exportNotes.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/linkCreator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/en-US/linkCreator.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/mainWindow.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/en-US/mainWindow.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/notePreview.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/en-US/notePreview.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/noteRelation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/en-US/noteRelation.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/outline.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/en-US/outline.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/en-US/preferences.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/syncDiff.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/en-US/syncDiff.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/syncManager.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/en-US/syncManager.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/templateEditor.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/en-US/templateEditor.ftl -------------------------------------------------------------------------------- /addon/locale/en-US/workspaceWindow.ftl: -------------------------------------------------------------------------------- 1 | title = Note Workspace 2 | -------------------------------------------------------------------------------- /addon/locale/it-IT/addon.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/it-IT/addon.ftl -------------------------------------------------------------------------------- /addon/locale/it-IT/exportNotes.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/it-IT/exportNotes.ftl -------------------------------------------------------------------------------- /addon/locale/it-IT/linkCreator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/it-IT/linkCreator.ftl -------------------------------------------------------------------------------- /addon/locale/it-IT/mainWindow.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/it-IT/mainWindow.ftl -------------------------------------------------------------------------------- /addon/locale/it-IT/notePreview.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/it-IT/notePreview.ftl -------------------------------------------------------------------------------- /addon/locale/it-IT/noteRelation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/it-IT/noteRelation.ftl -------------------------------------------------------------------------------- /addon/locale/it-IT/outline.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/it-IT/outline.ftl -------------------------------------------------------------------------------- /addon/locale/it-IT/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/it-IT/preferences.ftl -------------------------------------------------------------------------------- /addon/locale/it-IT/syncDiff.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/it-IT/syncDiff.ftl -------------------------------------------------------------------------------- /addon/locale/it-IT/syncManager.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/it-IT/syncManager.ftl -------------------------------------------------------------------------------- /addon/locale/it-IT/templateEditor.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/it-IT/templateEditor.ftl -------------------------------------------------------------------------------- /addon/locale/it-IT/workspaceWindow.ftl: -------------------------------------------------------------------------------- 1 | title = Nota di lavoro 2 | -------------------------------------------------------------------------------- /addon/locale/ru-RU/addon.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/ru-RU/addon.ftl -------------------------------------------------------------------------------- /addon/locale/ru-RU/export.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/ru-RU/export.ftl -------------------------------------------------------------------------------- /addon/locale/ru-RU/exportNotes.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/ru-RU/exportNotes.ftl -------------------------------------------------------------------------------- /addon/locale/ru-RU/linkCreator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/ru-RU/linkCreator.ftl -------------------------------------------------------------------------------- /addon/locale/ru-RU/mainWindow.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/ru-RU/mainWindow.ftl -------------------------------------------------------------------------------- /addon/locale/ru-RU/notePreview.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/ru-RU/notePreview.ftl -------------------------------------------------------------------------------- /addon/locale/ru-RU/noteRelation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/ru-RU/noteRelation.ftl -------------------------------------------------------------------------------- /addon/locale/ru-RU/outline.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/ru-RU/outline.ftl -------------------------------------------------------------------------------- /addon/locale/ru-RU/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/ru-RU/preferences.ftl -------------------------------------------------------------------------------- /addon/locale/ru-RU/syncDiff.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/ru-RU/syncDiff.ftl -------------------------------------------------------------------------------- /addon/locale/ru-RU/syncManager.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/ru-RU/syncManager.ftl -------------------------------------------------------------------------------- /addon/locale/ru-RU/templateEditor.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/ru-RU/templateEditor.ftl -------------------------------------------------------------------------------- /addon/locale/ru-RU/workspaceWindow.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/ru-RU/workspaceWindow.ftl -------------------------------------------------------------------------------- /addon/locale/tr-TR/addon.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/tr-TR/addon.ftl -------------------------------------------------------------------------------- /addon/locale/tr-TR/exportNotes.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/tr-TR/exportNotes.ftl -------------------------------------------------------------------------------- /addon/locale/tr-TR/linkCreator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/tr-TR/linkCreator.ftl -------------------------------------------------------------------------------- /addon/locale/tr-TR/mainWindow.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/tr-TR/mainWindow.ftl -------------------------------------------------------------------------------- /addon/locale/tr-TR/notePreview.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/tr-TR/notePreview.ftl -------------------------------------------------------------------------------- /addon/locale/tr-TR/noteRelation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/tr-TR/noteRelation.ftl -------------------------------------------------------------------------------- /addon/locale/tr-TR/outline.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/tr-TR/outline.ftl -------------------------------------------------------------------------------- /addon/locale/tr-TR/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/tr-TR/preferences.ftl -------------------------------------------------------------------------------- /addon/locale/tr-TR/syncDiff.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/tr-TR/syncDiff.ftl -------------------------------------------------------------------------------- /addon/locale/tr-TR/syncManager.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/tr-TR/syncManager.ftl -------------------------------------------------------------------------------- /addon/locale/tr-TR/templateEditor.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/tr-TR/templateEditor.ftl -------------------------------------------------------------------------------- /addon/locale/tr-TR/workspaceWindow.ftl: -------------------------------------------------------------------------------- 1 | title = Not Çalışma Alanı 2 | -------------------------------------------------------------------------------- /addon/locale/zh-CN/addon.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/zh-CN/addon.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/exportNotes.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/zh-CN/exportNotes.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/linkCreator.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/zh-CN/linkCreator.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/mainWindow.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/zh-CN/mainWindow.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/notePreview.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/zh-CN/notePreview.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/noteRelation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/zh-CN/noteRelation.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/outline.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/zh-CN/outline.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/preferences.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/zh-CN/preferences.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/syncDiff.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/zh-CN/syncDiff.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/syncManager.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/zh-CN/syncManager.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/templateEditor.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/locale/zh-CN/templateEditor.ftl -------------------------------------------------------------------------------- /addon/locale/zh-CN/workspaceWindow.ftl: -------------------------------------------------------------------------------- 1 | title = 笔记工作区 2 | -------------------------------------------------------------------------------- /addon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/manifest.json -------------------------------------------------------------------------------- /addon/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/addon/prefs.js -------------------------------------------------------------------------------- /docs/about-note-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/docs/about-note-template.md -------------------------------------------------------------------------------- /docs/res/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/docs/res/teaser.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/package.json -------------------------------------------------------------------------------- /scripts/docx/build-mml2omml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/scripts/docx/build-mml2omml.sh -------------------------------------------------------------------------------- /scripts/docx/mml2omml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/scripts/docx/mml2omml.xsl -------------------------------------------------------------------------------- /scripts/types/bundleTypes.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/scripts/types/bundleTypes.mjs -------------------------------------------------------------------------------- /scripts/types/templates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/scripts/types/templates.d.ts -------------------------------------------------------------------------------- /src/addon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/addon.ts -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/elements/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/elements/base.ts -------------------------------------------------------------------------------- /src/elements/linkCreator/inboundCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/elements/linkCreator/inboundCreator.ts -------------------------------------------------------------------------------- /src/elements/linkCreator/notePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/elements/linkCreator/notePicker.ts -------------------------------------------------------------------------------- /src/elements/linkCreator/notePreview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/elements/linkCreator/notePreview.ts -------------------------------------------------------------------------------- /src/elements/linkCreator/outboundCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/elements/linkCreator/outboundCreator.ts -------------------------------------------------------------------------------- /src/elements/linkCreator/outlinePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/elements/linkCreator/outlinePicker.ts -------------------------------------------------------------------------------- /src/elements/workspace/contextPane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/elements/workspace/contextPane.ts -------------------------------------------------------------------------------- /src/elements/workspace/detailsPane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/elements/workspace/detailsPane.ts -------------------------------------------------------------------------------- /src/elements/workspace/outlinePane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/elements/workspace/outlinePane.ts -------------------------------------------------------------------------------- /src/elements/workspace/related.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/elements/workspace/related.ts -------------------------------------------------------------------------------- /src/elements/workspace/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/elements/workspace/workspace.ts -------------------------------------------------------------------------------- /src/extras/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/convert.ts -------------------------------------------------------------------------------- /src/extras/convertWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/convertWorker.ts -------------------------------------------------------------------------------- /src/extras/convertWorker/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/convertWorker/env.ts -------------------------------------------------------------------------------- /src/extras/convertWorker/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/convertWorker/main.ts -------------------------------------------------------------------------------- /src/extras/customElements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/customElements.ts -------------------------------------------------------------------------------- /src/extras/docxWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/docxWorker.ts -------------------------------------------------------------------------------- /src/extras/editor/columnResizing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/editor/columnResizing.ts -------------------------------------------------------------------------------- /src/extras/editor/editorStrings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/editor/editorStrings.ts -------------------------------------------------------------------------------- /src/extras/editor/linkPreview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/editor/linkPreview.ts -------------------------------------------------------------------------------- /src/extras/editor/magicKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/editor/magicKey.ts -------------------------------------------------------------------------------- /src/extras/editor/markdownPaste.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/editor/markdownPaste.ts -------------------------------------------------------------------------------- /src/extras/editor/nodeViews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/editor/nodeViews.ts -------------------------------------------------------------------------------- /src/extras/editor/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/editor/plugins.ts -------------------------------------------------------------------------------- /src/extras/editor/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/editor/popup.ts -------------------------------------------------------------------------------- /src/extras/editorScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/editorScript.ts -------------------------------------------------------------------------------- /src/extras/exportNotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/exportNotes.ts -------------------------------------------------------------------------------- /src/extras/linkCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/linkCreator.ts -------------------------------------------------------------------------------- /src/extras/parsingWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/parsingWorker.ts -------------------------------------------------------------------------------- /src/extras/relationWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/relationWorker.ts -------------------------------------------------------------------------------- /src/extras/syncDiff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/syncDiff.ts -------------------------------------------------------------------------------- /src/extras/templatePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/templatePicker.ts -------------------------------------------------------------------------------- /src/extras/workspaceWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/extras/workspaceWindow.ts -------------------------------------------------------------------------------- /src/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/hooks.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/modules/annotationNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/annotationNote.ts -------------------------------------------------------------------------------- /src/modules/createNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/createNote.ts -------------------------------------------------------------------------------- /src/modules/editor/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/editor/image.ts -------------------------------------------------------------------------------- /src/modules/editor/initalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/editor/initalize.ts -------------------------------------------------------------------------------- /src/modules/editor/inject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/editor/inject.ts -------------------------------------------------------------------------------- /src/modules/editor/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/editor/menu.ts -------------------------------------------------------------------------------- /src/modules/editor/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/editor/plugins.ts -------------------------------------------------------------------------------- /src/modules/editor/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/editor/popup.ts -------------------------------------------------------------------------------- /src/modules/editor/toolbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/editor/toolbar.ts -------------------------------------------------------------------------------- /src/modules/export/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/export/api.ts -------------------------------------------------------------------------------- /src/modules/export/docx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/export/docx.ts -------------------------------------------------------------------------------- /src/modules/export/exportWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/export/exportWindow.ts -------------------------------------------------------------------------------- /src/modules/export/freemind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/export/freemind.ts -------------------------------------------------------------------------------- /src/modules/export/latex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/export/latex.ts -------------------------------------------------------------------------------- /src/modules/export/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/export/markdown.ts -------------------------------------------------------------------------------- /src/modules/export/pdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/export/pdf.ts -------------------------------------------------------------------------------- /src/modules/imageViewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/imageViewer.ts -------------------------------------------------------------------------------- /src/modules/import/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/import/markdown.ts -------------------------------------------------------------------------------- /src/modules/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/menu.ts -------------------------------------------------------------------------------- /src/modules/noteLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/noteLink.ts -------------------------------------------------------------------------------- /src/modules/notify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/notify.ts -------------------------------------------------------------------------------- /src/modules/patches/canEdit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/patches/canEdit.ts -------------------------------------------------------------------------------- /src/modules/patches/exportItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/patches/exportItems.ts -------------------------------------------------------------------------------- /src/modules/patches/openTabMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/patches/openTabMenu.ts -------------------------------------------------------------------------------- /src/modules/patches/viewItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/patches/viewItems.ts -------------------------------------------------------------------------------- /src/modules/preferenceWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/preferenceWindow.ts -------------------------------------------------------------------------------- /src/modules/sync/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/sync/api.ts -------------------------------------------------------------------------------- /src/modules/sync/diffWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/sync/diffWindow.ts -------------------------------------------------------------------------------- /src/modules/sync/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/sync/hooks.ts -------------------------------------------------------------------------------- /src/modules/sync/infoWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/sync/infoWindow.ts -------------------------------------------------------------------------------- /src/modules/sync/managerWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/sync/managerWindow.ts -------------------------------------------------------------------------------- /src/modules/template/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/template/api.ts -------------------------------------------------------------------------------- /src/modules/template/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/template/controller.ts -------------------------------------------------------------------------------- /src/modules/template/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/template/data.ts -------------------------------------------------------------------------------- /src/modules/template/editorWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/template/editorWindow.ts -------------------------------------------------------------------------------- /src/modules/template/monacoEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/template/monacoEditor.ts -------------------------------------------------------------------------------- /src/modules/template/picker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/template/picker.ts -------------------------------------------------------------------------------- /src/modules/template/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/template/preview.ts -------------------------------------------------------------------------------- /src/modules/template/refresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/template/refresh.ts -------------------------------------------------------------------------------- /src/modules/userGuide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/userGuide.ts -------------------------------------------------------------------------------- /src/modules/workspace/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/workspace/content.ts -------------------------------------------------------------------------------- /src/modules/workspace/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/workspace/link.ts -------------------------------------------------------------------------------- /src/modules/workspace/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/workspace/preview.ts -------------------------------------------------------------------------------- /src/modules/workspace/relation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/workspace/relation.ts -------------------------------------------------------------------------------- /src/modules/workspace/tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/workspace/tab.ts -------------------------------------------------------------------------------- /src/modules/workspace/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/modules/workspace/window.ts -------------------------------------------------------------------------------- /src/utils/annotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/annotation.ts -------------------------------------------------------------------------------- /src/utils/citation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/citation.ts -------------------------------------------------------------------------------- /src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/config.ts -------------------------------------------------------------------------------- /src/utils/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/convert.ts -------------------------------------------------------------------------------- /src/utils/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/editor.ts -------------------------------------------------------------------------------- /src/utils/hint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/hint.ts -------------------------------------------------------------------------------- /src/utils/itemPicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/itemPicker.ts -------------------------------------------------------------------------------- /src/utils/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/link.ts -------------------------------------------------------------------------------- /src/utils/linkCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/linkCreator.ts -------------------------------------------------------------------------------- /src/utils/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/locale.ts -------------------------------------------------------------------------------- /src/utils/note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/note.ts -------------------------------------------------------------------------------- /src/utils/parsing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/parsing.ts -------------------------------------------------------------------------------- /src/utils/prefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/prefs.ts -------------------------------------------------------------------------------- /src/utils/relation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/relation.ts -------------------------------------------------------------------------------- /src/utils/str.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/str.ts -------------------------------------------------------------------------------- /src/utils/templatePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/templatePicker.ts -------------------------------------------------------------------------------- /src/utils/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/wait.ts -------------------------------------------------------------------------------- /src/utils/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/window.ts -------------------------------------------------------------------------------- /src/utils/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/workspace.ts -------------------------------------------------------------------------------- /src/utils/ztoolkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/src/utils/ztoolkit.ts -------------------------------------------------------------------------------- /test/tests/export.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/test/tests/export.spec.ts -------------------------------------------------------------------------------- /test/tests/import.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/test/tests/import.spec.ts -------------------------------------------------------------------------------- /test/tests/startup.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/test/tests/startup.spec.ts -------------------------------------------------------------------------------- /test/tests/template.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/test/tests/template.spec.ts -------------------------------------------------------------------------------- /test/tests/workspace.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/test/tests/workspace.spec.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/typings/editor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/test/typings/editor.d.ts -------------------------------------------------------------------------------- /test/typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/test/typings/global.d.ts -------------------------------------------------------------------------------- /test/utils/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/test/utils/global.ts -------------------------------------------------------------------------------- /test/utils/io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/test/utils/io.ts -------------------------------------------------------------------------------- /test/utils/note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/test/utils/note.ts -------------------------------------------------------------------------------- /test/utils/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/test/utils/status.ts -------------------------------------------------------------------------------- /test/utils/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/test/utils/wait.ts -------------------------------------------------------------------------------- /test/utils/window.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/editor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/typings/editor.d.ts -------------------------------------------------------------------------------- /typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/typings/global.d.ts -------------------------------------------------------------------------------- /typings/i10n.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/typings/i10n.d.ts -------------------------------------------------------------------------------- /typings/note.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/typings/note.d.ts -------------------------------------------------------------------------------- /typings/prefs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/typings/prefs.d.ts -------------------------------------------------------------------------------- /typings/template.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/typings/template.d.ts -------------------------------------------------------------------------------- /zotero-plugin.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windingwind/zotero-better-notes/HEAD/zotero-plugin.config.ts --------------------------------------------------------------------------------