Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified _cite/.cache/cache.db
Binary file not shown.
Binary file added _cite/_cite/.cache/cache.db
Binary file not shown.
7 changes: 4 additions & 3 deletions _cite/cite.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
# compiled list of sources
sources = []

# in-order list of plugins to run
plugins = ["google-scholar", "pubmed", "orcid", "sources"]
# in-order list of plugins to run (sources first to preserve order)
plugins = ["sources", "google-scholar", "pubmed", "orcid"]

# loop through plugins
for plugin in plugins:
Expand Down Expand Up @@ -135,7 +135,8 @@
_id = get_safe(source, "id", "").strip()

# Manubot doesn't work without an id
if _id:
# Skip Manubot if source is marked as manual
if _id and not get_safe(source, "manual", False):
log("Using Manubot to generate citation", 1)

try:
Expand Down
Loading
Loading