Build a ZIP archive containing the corpus RDS, certificate, figures, tables, and an auto-generated README. This is the "send everything to a collaborator" workflow.
Examples
# \donttest{
corpus <- sm_example_corpus(n_works = 10)
path <- tempfile(fileext = ".zip")
sm_export_zip(corpus, path, include = c("rds", "certificate"))
#> ✔ Corpus saved to /tmp/RtmpIQMgiF/file2370113418ee/corpus.rds
#> ✔ Certificate written to /tmp/RtmpIQMgiF/file2370113418ee/certificate.yaml.
#> ✔ Certificate created. Corpus hash: 58b250d94efb
#> ✔ Bundle saved to /tmp/RtmpIQMgiF/file237017dbc423.zip
# }