add_archive_url | R Documentation |
Adds a top-level column archiveUrl
extracted from the item's corresponding
Zotero Robust Links attachment.
add_archive_url(items)
items |
A list or data frame of Zotero library items as returned by
|
An example of a "Robust Link" attachment can be viewed via this link.
A tibble.
Other Zotero items functions:
as_item_tibble()
,
items()
,
write_bib()
library(magrittr)
# fetch some demo entry
items(key = "AZBJE3R8", user = zotero_group_id(4603023)) %>%
# add archive link
add_archive_url() %>%
# drop "Robust Link" attachment
dplyr::filter(!(itemType == "attachment" & title == "Robust Link")) %>%
# show columns
dplyr::select(key, url, archiveUrl)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.