├── chrome ├── locale │ └── en-GB │ │ ├── zoteroroamexport.properties │ │ └── overlay.dtd └── content │ ├── overlay.xul │ └── roamexport.js ├── chrome.manifest ├── defaults └── preferences │ └── defaults.js ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── LICENSE.md ├── update.rdf ├── install.rdf └── README.md /chrome/locale/en-GB/zoteroroamexport.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chrome/locale/en-GB/overlay.dtd: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- 1 | content zoteroroamexport chrome/content/ 2 | 3 | locale zoteroroamexport en-GB chrome/locale/en-GB/ 4 | 5 | overlay chrome://zotero/content/zoteroPane.xul chrome://zoteroroamexport/content/overlay.xul 6 | -------------------------------------------------------------------------------- /defaults/preferences/defaults.js: -------------------------------------------------------------------------------- 1 | pref("extensions.roamexport.recursive_collection_topics", false); 2 | pref("extensions.roamexport.citekey_as_title", false); 3 | pref("extensions.roamexport.indent_tag_as_child", "
"); 4 | pref("extensions.roamexport.convert_underline_to_heading", true); -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a bug report 4 | title: "[BUG] " 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **About the items you are exporting** 14 | Give some details about the Zotero items you are trying to export. Include screenshots if helpful. 15 | 16 | **Debug output** (to access, follow the instructions here: https://www.zotero.org/support/debug_output) 17 | Please paste as a code block 18 | 19 | **Version of `zotero-roam-export`**: 20 | 21 | **Additional context** 22 | Add any other context about the problem here. 23 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Laurence Diver 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /update.rdf: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 1.11 10 | 11 | 12 | zotero@chnm.gmu.edu 13 | 5.0.0 14 | 5.* 15 | https://github.com/melat0nin/zotero-roam-export/releases/download/v1.11/zotero-roam-export-1.11.xpi 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /chrome/content/overlay.xul: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 12 | 13 | 14 | 15 | 19 | 20 | 21 | 23 | 27 | 28 | 29 |