Generate Markdown files from Zotero annotations and notes. With new Zotero PDF Reader, all highlights are saved in the Zotero database. The highlights are NOT saved in the PDF file unless you export the highlights in order to save them.
If you annotate your files outside the new Zotero PDF reader, this library will not work with your PDF annotations as those are not retrievable from Zotero API. In that case, you may want to use zotfile + mdnotes to extract the annotations and convert them into markdown files.
This library is for you if you annotate (highlight + note) using the Zotero's PDF reader (including the Zotero iOS)
You can install the library by running
pip install zotero2md
Note: If you do not have pip installed on your system, you can follow the instructions here.
Since we have to retrieve the notes from Zotero API, the minimum requirements are:
Your userID for use in API calls is XXXXXX
.https://www.zotero.org/groups/
/groups/
and /group_name
is the libarry ID. Note that if you want to retrieve annotations and notes from a group, you should provide the group ID (zotero_library_id=<group_id>
) and set the library type to group (zotero_library_type="group"
).
After installing the library, open a Python terminal, and then execute the following:
from zotero2md.zt2md import Zotero2Markdown
zt = Zotero2Markdown(
zotero_key="your_zotero_key",
zotero_library_id="your_zotero_id",
zotero_library_type="user", # "user" (default) or "group"
params_filepath="", # [Default values provided bellow] # The path to JSON file containing the custom parameters (See Section Custom Output Parameters).
include_annotations=True, # Default: True
include_notes=True, # Default: True
)
zt.run_all()
Just to make sure that all files are created, you can run save_failed_items_to_txt()
to ensure that no file was
was failed to create. If a file or more failed to create, the filename (item title) and the corresponding Zotero
item key will be saved to a txt file.
zt.save_failed_items_to_txt("failed_zotero_items.txt")
For this approach, you need to download output_to_md.py
script.
Run python output_to_md.py -h
to get more information about all options.
python zotero2md/output_to_md.py <zotero_key> <zotero_id>
For instance, assuming zotero_key=abcd and zotero_id=1234, you can simply run the following:
python zotero2md/output_to_md.py abcd 1234
You can change default parameters by passing the --config_filepath
option with the path to a
JSON file containing the desired configurations. For instance,
python zotero2md/generate.py <zotero_key> <zotero_id> --config_filepath ./sample_params.json
Parameter | type | default value |
---|---|---|
convertTagsToInternalLinks |
bool | true |
doNotConvertFollowingTagsToLink |
List of strings | [ ] |
includeHighlightDate |
bool | true |
hideHighlightDateInPreview |
bool | true |
Any parameter in the JSON file will override the default setting. If a parameter is not provided, then the default value will be used.
For example, if you don't want to show the highlight date in the output file, you can simply pass a JSON file with the following content:
{
"hideHighlightDateInPreview": false
}
[[ ]]
) used in many bidirectional MD editors.
doNotConvertFollowingTagsToLink
parameter)Since I'm personally using Obsidian as my markdown editor, there are custom parameters to generate MD files that are consistent with Obsidian and I'm planning to add more option there.
Feel free to request a new feature or report a bug in GitHub issue here.