diff --git a/.Rbuildignore b/.Rbuildignore
index bb79b36..9cfb9b1 100644
--- a/.Rbuildignore
+++ b/.Rbuildignore
@@ -12,3 +12,4 @@
^docs$
^pkgdown$
^vignettes/*_files$
+^vignettes/.quarto$
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index d237539..e96863b 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -1,7 +1,18 @@
# How to Contribute
-Contributions, issues, and fixes are welcome!
+Pull requests and issues are welcome! File an issue before opening a pull request so we can discuss.
-> If making changes to data, this must be done to the [raw txt files](../data-raw/corpus/). The [`generate_data.R`](../data-raw/generate_data.R) script automates creating the RDA files and accompanying documentation.
+## Repository Structure
+[`data-raw/corpus`](../data-raw/corpus/) contains the raw text of the works. Any change to or addition/removal of datasets must be done in this directory.
+
+The [`generate_data.R`](../data-raw/generate_data.R) script automates creating the datasets and their [accompanying documentation](../R/data.R) from the [raw text files](../data-raw/corpus/).
+
+Thus the process for most changes will require updating the raw data or the [`generate_data.R` script](../data-raw/generate_data.R) then running [`generate_data.R`](../data-raw/generate_data.R) to generate changes to the datasets or docs.
+
+## Issues
+Issues should provide details on bugs, dataset errors, or feature requests. Ensure there isn't already an open issue or pull request on your issue before opening.
+
+## Pull Requests
+1. [File an issue](https://docs.github.com/en/issues/tracking-your-work-with-issues/creating-an-issue) and wait for a reply before starting any work
1. [Fork](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo) and [clone](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository) the repo
@@ -15,13 +26,15 @@ Contributions, issues, and fixes are welcome!
1. Make your changes
- * Run the [`generate_data.R`](../data-raw/generate_data.R) script if you made changes to the raw txt files or data documentation
+ * Run the [`generate_data.R`](../data-raw/generate_data.R) script if you made changes to the raw text files or data documentation
* Render [`README.md`](../README.md) from [`README.qmd`](../README.md) if you made changes to the `README`
-1. Ensure all {[`testthat`](https://testthat.r-lib.org/)} tests pass
+1. Ensure [R-CMD-check](https://devtools.r-lib.org/reference/check.html) passes
```R
- devtools::test()
+ devtools::check()
```
+1. Run the [`build_github_site.R` script](../data-raw/build_github_site.R) to preview the {`pkgdown`} site
+
1. Submit a PR
diff --git a/.gitignore b/.gitignore
index 5962f7e..a3580d8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,47 @@
-.Rproj.user
+# History files
.Rhistory
+.Rapp.history
+
+# Session Data files
.RData
+.RDataTmp
+
+# User-specific files
.Ruserdata
+# Example code in package build process
+*-Ex.R
+
+# Output files from R CMD build
+/*.tar.gz
+
+# Output files from R CMD check
+/*.Rcheck/
+
+# RStudio files
+.Rproj.user/
+
+# produced vignettes
+vignettes/*.html
+vignettes/*.pdf
+
+# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
+.httr-oauth
+
+# knitr and R markdown default cache directories
+*_cache/
+/cache/
+
+# Temporary files created by R markdown
+*.utf8.md
+*.knit.md
+
+# R Environment Variables
+.Renviron
+
+# pkgdown site
+docs/
+
+# Quarto folder
/.quarto/
-docs
+inst/doc
diff --git a/DESCRIPTION b/DESCRIPTION
index 9fb3d46..e06fdbb 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,7 +1,7 @@
Package: lovecraftr
Type: Package
Title: H. P. Lovecraft's works, for text analysis
-Version: 0.2.4
+Version: 1.0.0
Authors@R:
person("Jordan", "Bradford", email = "jrdnbradford@gmail.com", role = c("aut", "cre"))
Description: A collection of H. P. Lovecraft's works as R datasets.
@@ -11,8 +11,11 @@ License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Depends:
- R (>= 2.10)
+ R (>= 3.5)
Suggests:
- testthat (>= 3.0.0),
+ knitr,
+ rmarkdown,
+ testthat (>= 3.0.0)
Config/testthat/edition: 3
RoxygenNote: 7.3.2
+VignetteBuilder: knitr
diff --git a/NEWS.md b/NEWS.md
new file mode 100644
index 0000000..288bf90
--- /dev/null
+++ b/NEWS.md
@@ -0,0 +1,18 @@
+# lovecraftr 1.0.0.9000 (Development Version)
+No development changes (yet).
+
+# lovecraftr 1.0.0
+The release of 1.0.0 signals a stable API and base infrastructure on which to maintain the datasets and documentation.
+
+## Documentation
+* `vignettes/copyright-status.Rmd` explains copyright status of works
+* `NEWS.md`, this file, documents changes
+* updates to `README`
+* addition of lifecycle and R package version badges
+* `CONTRIBUTING.md` has been overhauled
+
+## Tooling
+* `generate_data.R` adds reference to `copyright-status.Rmd` to dataset documentation, along with a few other minor updates
+
+## Datasets
+* datasets now use version 3 RDA serialization format
diff --git a/R/data.R b/R/data.R
index e56d38d..b6c37a2 100644
--- a/R/data.R
+++ b/R/data.R
@@ -9,8 +9,11 @@
#' @docType data
#' @keywords datasets novella
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/at_the_mountains_of_madness)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/at_the_mountains_of_madness.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/at_the_mountains_of_madness)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/at_the_mountains_of_madness.rda)
#' @md
"at_the_mountains_of_madness"
@@ -26,8 +29,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/azathoth)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/azathoth.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/azathoth)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/azathoth.rda)
#' @md
"azathoth"
@@ -43,8 +49,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/beyond_the_wall_of_sleep)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/beyond_the_wall_of_sleep.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/beyond_the_wall_of_sleep)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/beyond_the_wall_of_sleep.rda)
#' @md
"beyond_the_wall_of_sleep"
@@ -60,8 +69,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/celephais)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/celephais.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/celephais)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/celephais.rda)
#' @md
"celephais"
@@ -77,8 +89,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/cool_air)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/cool_air.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/cool_air)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/cool_air.rda)
#' @md
"cool_air"
@@ -94,8 +109,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/dagon)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/dagon.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/dagon)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/dagon.rda)
#' @md
"dagon"
@@ -111,8 +129,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/dreams_in_the_witch_house)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/dreams_in_the_witch_house.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/dreams_in_the_witch_house)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/dreams_in_the_witch_house.rda)
#' @md
"dreams_in_the_witch_house"
@@ -128,8 +149,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/ex_oblivione)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/ex_oblivione.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/ex_oblivione)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/ex_oblivione.rda)
#' @md
"ex_oblivione"
@@ -145,8 +169,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/facts_concerning_the_late_arthur_jermyn_and_his_family)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/facts_concerning_the_late_arthur_jermyn_and_his_family.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/facts_concerning_the_late_arthur_jermyn_and_his_family)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/facts_concerning_the_late_arthur_jermyn_and_his_family.rda)
#' @md
"facts_concerning_the_late_arthur_jermyn_and_his_family"
@@ -162,8 +189,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/from_beyond)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/from_beyond.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/from_beyond)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/from_beyond.rda)
#' @md
"from_beyond"
@@ -179,8 +209,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/he)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/he.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/he)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/he.rda)
#' @md
"he"
@@ -196,8 +229,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/herbert_west_reanimator)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/herbert_west_reanimator.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/herbert_west_reanimator)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/herbert_west_reanimator.rda)
#' @md
"herbert_west_reanimator"
@@ -213,8 +249,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/hypnos)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/hypnos.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/hypnos)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/hypnos.rda)
#' @md
"hypnos"
@@ -230,8 +269,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/imprisoned_with_the_pharoahs)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/imprisoned_with_the_pharoahs.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/imprisoned_with_the_pharoahs)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/imprisoned_with_the_pharoahs.rda)
#' @md
"imprisoned_with_the_pharoahs"
@@ -247,8 +289,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/in_the_vault)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/in_the_vault.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/in_the_vault)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/in_the_vault.rda)
#' @md
"in_the_vault"
@@ -264,8 +309,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/medusas_coil)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/medusas_coil.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/medusas_coil)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/medusas_coil.rda)
#' @md
"medusas_coil"
@@ -281,8 +329,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/memory)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/memory.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/memory)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/memory.rda)
#' @md
"memory"
@@ -298,8 +349,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/nyarlathotep)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/nyarlathotep.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/nyarlathotep)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/nyarlathotep.rda)
#' @md
"nyarlathotep"
@@ -315,8 +369,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/pickmans_model)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/pickmans_model.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/pickmans_model)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/pickmans_model.rda)
#' @md
"pickmans_model"
@@ -332,8 +389,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/poetry_of_the_gods)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/poetry_of_the_gods.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/poetry_of_the_gods)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/poetry_of_the_gods.rda)
#' @md
"poetry_of_the_gods"
@@ -349,8 +409,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/polaris)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/polaris.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/polaris)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/polaris.rda)
#' @md
"polaris"
@@ -366,8 +429,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_alchemist)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_alchemist.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_alchemist)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_alchemist.rda)
#' @md
"the_alchemist"
@@ -383,8 +449,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_beast_in_the_cave)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_beast_in_the_cave.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_beast_in_the_cave)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_beast_in_the_cave.rda)
#' @md
"the_beast_in_the_cave"
@@ -400,8 +469,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_book)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_book.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_book)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_book.rda)
#' @md
"the_book"
@@ -417,8 +489,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_call_of_cthulhu)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_call_of_cthulhu.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_call_of_cthulhu)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_call_of_cthulhu.rda)
#' @md
"the_call_of_cthulhu"
@@ -434,8 +509,11 @@
#' @docType data
#' @keywords datasets novella
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_case_of_charles_dexter_ward)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_case_of_charles_dexter_ward.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_case_of_charles_dexter_ward)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_case_of_charles_dexter_ward.rda)
#' @md
"the_case_of_charles_dexter_ward"
@@ -451,8 +529,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_cats_of_ulthar)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_cats_of_ulthar.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_cats_of_ulthar)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_cats_of_ulthar.rda)
#' @md
"the_cats_of_ulthar"
@@ -468,8 +549,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_colour_out_of_space)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_colour_out_of_space.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_colour_out_of_space)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_colour_out_of_space.rda)
#' @md
"the_colour_out_of_space"
@@ -485,8 +569,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_crawling_chaos)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_crawling_chaos.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_crawling_chaos)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_crawling_chaos.rda)
#' @md
"the_crawling_chaos"
@@ -502,8 +589,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_descendent)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_descendent.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_descendent)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_descendent.rda)
#' @md
"the_descendent"
@@ -519,8 +609,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_doom_that_came_to_sarnath)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_doom_that_came_to_sarnath.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_doom_that_came_to_sarnath)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_doom_that_came_to_sarnath.rda)
#' @md
"the_doom_that_came_to_sarnath"
@@ -536,8 +629,11 @@
#' @docType data
#' @keywords datasets novella
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_dream_quest_of_unknown_kadath)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_dream_quest_of_unknown_kadath.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_dream_quest_of_unknown_kadath)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_dream_quest_of_unknown_kadath.rda)
#' @md
"the_dream_quest_of_unknown_kadath"
@@ -553,8 +649,11 @@
#' @docType data
#' @keywords datasets novella
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_dunwich_horror)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_dunwich_horror.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_dunwich_horror)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_dunwich_horror.rda)
#' @md
"the_dunwich_horror"
@@ -570,8 +669,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_evil_clergyman)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_evil_clergyman.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_evil_clergyman)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_evil_clergyman.rda)
#' @md
"the_evil_clergyman"
@@ -587,8 +689,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_festival)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_festival.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_festival)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_festival.rda)
#' @md
"the_festival"
@@ -604,8 +709,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_haunter_of_the_dark)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_haunter_of_the_dark.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_haunter_of_the_dark)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_haunter_of_the_dark.rda)
#' @md
"the_haunter_of_the_dark"
@@ -621,8 +729,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_horror_at_martins_beach)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_horror_at_martins_beach.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_horror_at_martins_beach)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_horror_at_martins_beach.rda)
#' @md
"the_horror_at_martins_beach"
@@ -638,8 +749,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_horror_at_redhook)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_horror_at_redhook.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_horror_at_redhook)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_horror_at_redhook.rda)
#' @md
"the_horror_at_redhook"
@@ -655,8 +769,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_hound)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_hound.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_hound)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_hound.rda)
#' @md
"the_hound"
@@ -672,8 +789,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_lurking_fear)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_lurking_fear.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_lurking_fear)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_lurking_fear.rda)
#' @md
"the_lurking_fear"
@@ -689,8 +809,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_moon_bog)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_moon_bog.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_moon_bog)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_moon_bog.rda)
#' @md
"the_moon_bog"
@@ -706,8 +829,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_music_of_erich_zann)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_music_of_erich_zann.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_music_of_erich_zann)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_music_of_erich_zann.rda)
#' @md
"the_music_of_erich_zann"
@@ -723,8 +849,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_nameless_city)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_nameless_city.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_nameless_city)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_nameless_city.rda)
#' @md
"the_nameless_city"
@@ -740,8 +869,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_other_gods)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_other_gods.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_other_gods)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_other_gods.rda)
#' @md
"the_other_gods"
@@ -757,8 +889,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_outsider)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_outsider.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_outsider)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_outsider.rda)
#' @md
"the_outsider"
@@ -774,8 +909,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_picture_in_the_house)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_picture_in_the_house.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_picture_in_the_house)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_picture_in_the_house.rda)
#' @md
"the_picture_in_the_house"
@@ -791,8 +929,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_quest_of_iranon)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_quest_of_iranon.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_quest_of_iranon)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_quest_of_iranon.rda)
#' @md
"the_quest_of_iranon"
@@ -808,8 +949,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_rats_in_the_walls)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_rats_in_the_walls.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_rats_in_the_walls)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_rats_in_the_walls.rda)
#' @md
"the_rats_in_the_walls"
@@ -825,8 +969,11 @@
#' @docType data
#' @keywords datasets novella
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_shadow_out_of_time)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_shadow_out_of_time.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_shadow_out_of_time)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_shadow_out_of_time.rda)
#' @md
"the_shadow_out_of_time"
@@ -842,8 +989,11 @@
#' @docType data
#' @keywords datasets novella
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_shadow_over_innsmouth)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_shadow_over_innsmouth.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_shadow_over_innsmouth)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_shadow_over_innsmouth.rda)
#' @md
"the_shadow_over_innsmouth"
@@ -859,8 +1009,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_shunned_house)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_shunned_house.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_shunned_house)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_shunned_house.rda)
#' @md
"the_shunned_house"
@@ -876,8 +1029,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_silver_key)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_silver_key.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_silver_key)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_silver_key.rda)
#' @md
"the_silver_key"
@@ -893,8 +1049,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_statement_of_randolph_carter)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_statement_of_randolph_carter.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_statement_of_randolph_carter)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_statement_of_randolph_carter.rda)
#' @md
"the_statement_of_randolph_carter"
@@ -910,8 +1069,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_strange_high_house_in_the_mist)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_strange_high_house_in_the_mist.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_strange_high_house_in_the_mist)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_strange_high_house_in_the_mist.rda)
#' @md
"the_strange_high_house_in_the_mist"
@@ -927,8 +1089,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_street)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_street.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_street)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_street.rda)
#' @md
"the_street"
@@ -944,8 +1109,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_temple)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_temple.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_temple)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_temple.rda)
#' @md
"the_temple"
@@ -961,8 +1129,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_terrible_old_man)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_terrible_old_man.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_terrible_old_man)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_terrible_old_man.rda)
#' @md
"the_terrible_old_man"
@@ -978,8 +1149,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_thing_on_the_doorstep)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_thing_on_the_doorstep.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_thing_on_the_doorstep)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_thing_on_the_doorstep.rda)
#' @md
"the_thing_on_the_doorstep"
@@ -995,8 +1169,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_tomb)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_tomb.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_tomb)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_tomb.rda)
#' @md
"the_tomb"
@@ -1012,8 +1189,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_transition_of_juan_romero)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_transition_of_juan_romero.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_transition_of_juan_romero)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_transition_of_juan_romero.rda)
#' @md
"the_transition_of_juan_romero"
@@ -1029,8 +1209,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_tree)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_tree.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_tree)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_tree.rda)
#' @md
"the_tree"
@@ -1046,8 +1229,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_unnamable)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_unnamable.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_unnamable)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_unnamable.rda)
#' @md
"the_unnamable"
@@ -1063,8 +1249,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_very_old_folk)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_very_old_folk.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_very_old_folk)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_very_old_folk.rda)
#' @md
"the_very_old_folk"
@@ -1080,8 +1269,11 @@
#' @docType data
#' @keywords datasets novella
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_whisperer_in_darkness)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_whisperer_in_darkness.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_whisperer_in_darkness)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_whisperer_in_darkness.rda)
#' @md
"the_whisperer_in_darkness"
@@ -1097,8 +1289,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_white_ship)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_white_ship.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_white_ship)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_white_ship.rda)
#' @md
"the_white_ship"
@@ -1114,8 +1309,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/through_the_gates_of_the_silver_key)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/through_the_gates_of_the_silver_key.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/through_the_gates_of_the_silver_key)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/through_the_gates_of_the_silver_key.rda)
#' @md
"through_the_gates_of_the_silver_key"
@@ -1131,8 +1329,11 @@
#' @docType data
#' @keywords datasets short
#' @source Public domain.
-#' See the [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/what_the_moon_brings)
-#' or download the [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/what_the_moon_brings.rda).
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
+#'
+#' * [raw text file](https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/what_the_moon_brings)
+#' * [RDA file](https://github.com/jrdnbradford/lovecraftr/raw/main/data/what_the_moon_brings.rda)
#' @md
"what_the_moon_brings"
@@ -1152,5 +1353,7 @@
#' @docType data
#' @keywords datasets
#' @source Public domain.
+#' For more details see the vignette:
+#' \code{vignette("copyright-status", package = "lovecraftr")}.
#' @md
"lovecraft"
diff --git a/README.md b/README.md
index 24cbdf5..ff27270 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,15 @@
# {`lovecraftr`}
+
+
[![R-CMD-check](https://github.com/jrdnbradford/lovecraftr/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/jrdnbradford/lovecraftr/actions/workflows/R-CMD-check.yaml)
[![dataset-check](https://github.com/jrdnbradford/lovecraftr/actions/workflows/dataset-check.yaml/badge.svg)](https://github.com/jrdnbradford/lovecraftr/actions/workflows/dataset-check.yaml)
+![GitHub R package
+version](https://img.shields.io/github/r-package/v/jrdnbradford/lovecraftr.png)
+[![Lifecycle:
+stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
+
> The most merciful thing in the world, I think, is the inability of the
> human mind to correlate all its contents. We live on a placid island
@@ -21,72 +28,69 @@
Call of Cthulhu*
{`lovecraftr`} contains H. P. Lovecraft’s corpus as R datasets for
-textual analysis. This repository contains both the raw txt files and
-RDA files. See the
-[reference](https://jrdnbradford.github.io/lovecraftr/reference/index.html)
+textual analysis. This repository contains both the raw text files and
+RDA files. See the [package index
+reference](https://jrdnbradford.github.io/lovecraftr/reference/index.html)
for the list of available works.
## Installation
Install from [GitHub](https://github.com/jrdnbradford/lovecraftr/) using
-{[`devtools`](https://devtools.r-lib.org/)}:
+any of the methods below.
+
+### {[`devtools`](https://devtools.r-lib.org/)}
``` r
# install.packages("devtools")
devtools::install_github("jrdnbradford/lovecraftr")
```
-or {[`remotes`](https://remotes.r-lib.org//)}:
+### {[`remotes`](https://remotes.r-lib.org/)}
``` r
# install.packages("remotes")
remotes::install_github("jrdnbradford/lovecraftr")
```
-## Usage
-
-Character vectors of individual works can be accessed in several ways:
+### {[`pak`](https://pak.r-lib.org/)}
``` r
-cthulhu <- lovecraftr::the_call_of_cthulhu
-head(cthulhu)
-#> [1] "THE CALL OF CTHULHU"
-#> [2] ""
-#> [3] "Of such great powers or beings there may be conceivably a survival...a survival"
-#> [4] "of a hugely remote period when...consciousness was manifested, perhaps, in"
-#> [5] "shapes and forms long since withdrawn before the tide of advancing"
-#> [6] "humanity...forms of which poetry and legend alone have caught a flying memory"
+# install.packages("pak")
+pak::pkg_install("jrdnbradford/lovecraftr")
```
-or
+## Usage
+
+See the [package index
+reference](https://jrdnbradford.github.io/lovecraftr/reference/index.html)
+for documentation on works and usage.
+
+Once the package is loaded, character vectors of individual works can be
+accessed in several ways.
+
+You can load a dataset into the environment directly using:
``` r
-data("the_call_of_cthulhu")
+data(the_call_of_cthulhu)
```
-The entire corpus can be accessed as a tibble with:
+You can also assign a dataset to a variable:
``` r
-corpus <- lovecraftr::lovecraft_corpus()
+corpus <- lovecraft
corpus |>
- dplyr::filter(title == "THE CALL OF CTHULHU") |>
+ dplyr::filter(title == "The Call of Cthulhu") |>
head()
#> # A tibble: 6 × 2
#> title text
#>
-#> 1 THE CALL OF CTHULHU "THE CALL OF CTHULHU"
-#> 2 THE CALL OF CTHULHU ""
-#> 3 THE CALL OF CTHULHU "Of such great powers or beings there may be conceivably …
-#> 4 THE CALL OF CTHULHU "of a hugely remote period when...consciousness was manif…
-#> 5 THE CALL OF CTHULHU "shapes and forms long since withdrawn before the tide of…
-#> 6 THE CALL OF CTHULHU "humanity...forms of which poetry and legend alone have c…
-```
-
-or
-
-``` r
-data("lovecraft")
+#> 1 The Call of Cthulhu "THE CALL OF CTHULHU"
+#> 2 The Call of Cthulhu ""
+#> 3 The Call of Cthulhu "Of such great powers or beings there may be conceivably …
+#> 4 The Call of Cthulhu "of a hugely remote period when...consciousness was manif…
+#> 5 The Call of Cthulhu "shapes and forms long since withdrawn before the tide of…
+#> 6 The Call of Cthulhu "humanity...forms of which poetry and legend alone have c…
```
## Contributing
diff --git a/README.qmd b/README.qmd
index 2c1f2f0..7cf9395 100644
--- a/README.qmd
+++ b/README.qmd
@@ -15,14 +15,18 @@ knitr::opts_chunk$set(
# {`lovecraftr`}
+
[![R-CMD-check](https://github.com/jrdnbradford/lovecraftr/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/jrdnbradford/lovecraftr/actions/workflows/R-CMD-check.yaml)
[![dataset-check](https://github.com/jrdnbradford/lovecraftr/actions/workflows/dataset-check.yaml/badge.svg)](https://github.com/jrdnbradford/lovecraftr/actions/workflows/dataset-check.yaml)
+![GitHub R package version](https://img.shields.io/github/r-package/v/jrdnbradford/lovecraftr)
+[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
+
> The most merciful thing in the world, I think, is the inability of the human mind to correlate all its contents. We live on a placid island of ignorance in the midst of black seas of infinity, and it was not meant that we should voyage far. The sciences, each straining in its own direction, have hitherto harmed us little; but some day the piecing together of dissociated knowledge will open up such terrifying vistas of reality, and of our frightful position therein, that we shall either go mad from the revelation or flee from the light into the peace and safety of a new dark age.
-[H. P. Lovecraft](https://en.wikipedia.org/wiki/H._P._Lovecraft), *The Call of Cthulhu*
-{`lovecraftr`} contains H. P. Lovecraft's corpus as R datasets for textual analysis. This repository contains both the raw txt files and RDA files. See the [reference](https://jrdnbradford.github.io/lovecraftr/reference/index.html) for the list of available works.
+{`lovecraftr`} contains H. P. Lovecraft's corpus as R datasets for textual analysis. This repository contains both the raw text files and RDA files. See the [package index reference](https://jrdnbradford.github.io/lovecraftr/reference/index.html) for the list of available works.
## Installation
@@ -30,45 +34,49 @@ knitr::opts_chunk$set(
devtools::load_all()
```
-Install from [GitHub](https://github.com/jrdnbradford/lovecraftr/) using {[`devtools`](https://devtools.r-lib.org/)}:
+Install from [GitHub](https://github.com/jrdnbradford/lovecraftr/) using any of the methods below.
+
+### {[`devtools`](https://devtools.r-lib.org/)}
+
```{R devtools-install, echo=TRUE, eval=FALSE, output=FALSE}
# install.packages("devtools")
devtools::install_github("jrdnbradford/lovecraftr")
```
-or {[`remotes`](https://remotes.r-lib.org//)}:
+### {[`remotes`](https://remotes.r-lib.org/)}
+
```{R remotes-install, echo=TRUE, eval=FALSE, output=FALSE}
# install.packages("remotes")
remotes::install_github("jrdnbradford/lovecraftr")
```
-## Usage
+### {[`pak`](https://pak.r-lib.org/)}
-Character vectors of individual works can be accessed in several ways:
-```{R dataset-cthulhu, output=TRUE, eval=TRUE}
-cthulhu <- lovecraftr::the_call_of_cthulhu
-head(cthulhu)
+```{R pak-install, echo=TRUE, eval=FALSE, output=FALSE}
+# install.packages("pak")
+pak::pkg_install("jrdnbradford/lovecraftr")
```
-or
+## Usage
+
+See the [package index reference](https://jrdnbradford.github.io/lovecraftr/reference/index.html) for documentation on works and usage.
+
+Once the package is loaded, character vectors of individual works can be accessed in several ways.
+
+You can load a dataset into the environment directly using:
```{R data-cthulhu, echo=TRUE, eval=FALSE}
-data("the_call_of_cthulhu")
+data(the_call_of_cthulhu)
```
-The entire corpus can be accessed as a tibble with:
+You can also assign a dataset to a variable:
```{R lovecraft-tibble, output=TRUE, eval=TRUE}
-corpus <- lovecraftr::lovecraft_corpus()
+corpus <- lovecraft
corpus |>
- dplyr::filter(title == "THE CALL OF CTHULHU") |>
+ dplyr::filter(title == "The Call of Cthulhu") |>
head()
```
-or
-```{R data-lovecraft, echo=TRUE, eval=FALSE}
-data("lovecraft")
-```
-
## Contributing
See [CONTRIBUTING.md](/.github/CONTRIBUTING.md).
diff --git a/data-raw/create_sticker.R b/data-raw/create_sticker.R
index a735623..4326621 100644
--- a/data-raw/create_sticker.R
+++ b/data-raw/create_sticker.R
@@ -1,11 +1,10 @@
#!/usr/bin/env Rscript
-# This script generates the hex sticker for the packages
-
+# This script generates the hex sticker for the package
signature_url <- "https://upload.wikimedia.org/wikipedia/commons/a/a7/Lovecraft_signature_1924-02-02.png"
signature_dest_path <- file.path("data-raw", "stickers", "signature.png")
-raw_log_path <- file.path("data-raw", "stickers", "logo-raw.png")
+raw_logo_path <- file.path("data-raw", "stickers", "logo-raw.png")
download.file(signature_url, signature_dest_path)
@@ -25,8 +24,8 @@ hexSticker::sticker(
u_size = 4,
u_y = 0.1,
u_color = "black",
- filename = raw_log_path,
+ filename = raw_logo_path,
dpi = 600
)
-usethis::use_logo(raw_log_path)
+usethis::use_logo(raw_logo_path)
diff --git a/data-raw/generate_data.R b/data-raw/generate_data.R
index f212911..402e294 100644
--- a/data-raw/generate_data.R
+++ b/data-raw/generate_data.R
@@ -4,9 +4,8 @@
# accompanying documentation for {lovecraftr} using
# the raw txt files in data-raw/corpus
-
title_case <- function(x) {
- stopwords <- c("and", "of", "the", "on", "at", "in", "with", "to", "that") # Add more stopwords if needed
+ stopwords <- c("and", "of", "the", "on", "at", "in", "with", "to", "that", "a")
words <- stringr::str_split(tolower(x), " ")[[1]]
words <- ifelse(words %in% stopwords & seq_along(words) != 1, words, stringr::str_to_title(words))
return(stringr::str_c(words, collapse = " "))
@@ -34,8 +33,11 @@ docs_template <- "{header}
#' @docType data
#' @keywords datasets {type}
#' @source Public domain.
-#' See the {raw_txt_link}
-#' or download the {rda_link}.
+#' For more details see the vignette:
+#' \\code{{vignette(\"copyright-status\", package = \"lovecraftr\")}}.
+#'
+#' * {raw_txt_link}
+#' * {rda_link}
#' @md
\"{dataset_name}\"
@@ -49,7 +51,7 @@ for (txt in corpus) {
num_vectors <- scales::number(length(text), big.mark = ",")
dataset_name <- as.name(txt)
assign(txt, text)
- do.call(usethis::use_data, list(dataset_name, overwrite = TRUE))
+ do.call(usethis::use_data, list(dataset_name, overwrite = TRUE, version = 3))
type <- subset(metadata, title == dataset_name)$type
title <- title_case(head(text, 1))
@@ -80,12 +82,14 @@ corpus_docs <- glue::glue("{header}
#' @docType data
#' @keywords datasets
#' @source Public domain.
+#' For more details see the vignette:
+#' \\code{{vignette(\"copyright-status\", package = \"lovecraftr\")}}.
#' @md
\"lovecraft\"
")
docs <- c(docs, corpus_docs)
-usethis::use_data(lovecraft, overwrite = TRUE)
+usethis::use_data(lovecraft, overwrite = TRUE, version = 3)
doc_file <- file(data_docs_file, "a")
write(docs, file = doc_file)
diff --git a/data/at_the_mountains_of_madness.rda b/data/at_the_mountains_of_madness.rda
index 7342f0a..1d6c7e8 100644
Binary files a/data/at_the_mountains_of_madness.rda and b/data/at_the_mountains_of_madness.rda differ
diff --git a/data/azathoth.rda b/data/azathoth.rda
index 12d35d6..77716d0 100644
Binary files a/data/azathoth.rda and b/data/azathoth.rda differ
diff --git a/data/beyond_the_wall_of_sleep.rda b/data/beyond_the_wall_of_sleep.rda
index 5696259..f68daa3 100644
Binary files a/data/beyond_the_wall_of_sleep.rda and b/data/beyond_the_wall_of_sleep.rda differ
diff --git a/data/celephais.rda b/data/celephais.rda
index d415b68..a960ecd 100644
Binary files a/data/celephais.rda and b/data/celephais.rda differ
diff --git a/data/cool_air.rda b/data/cool_air.rda
index ae021d9..6e3d562 100644
Binary files a/data/cool_air.rda and b/data/cool_air.rda differ
diff --git a/data/dagon.rda b/data/dagon.rda
index ef611b7..199287d 100644
Binary files a/data/dagon.rda and b/data/dagon.rda differ
diff --git a/data/dreams_in_the_witch_house.rda b/data/dreams_in_the_witch_house.rda
index bb9fca3..ffc554e 100644
Binary files a/data/dreams_in_the_witch_house.rda and b/data/dreams_in_the_witch_house.rda differ
diff --git a/data/ex_oblivione.rda b/data/ex_oblivione.rda
index 18e7daa..91feaa7 100644
Binary files a/data/ex_oblivione.rda and b/data/ex_oblivione.rda differ
diff --git a/data/facts_concerning_the_late_arthur_jermyn_and_his_family.rda b/data/facts_concerning_the_late_arthur_jermyn_and_his_family.rda
index 39a95ee..5dc8fdb 100644
Binary files a/data/facts_concerning_the_late_arthur_jermyn_and_his_family.rda and b/data/facts_concerning_the_late_arthur_jermyn_and_his_family.rda differ
diff --git a/data/from_beyond.rda b/data/from_beyond.rda
index 716745e..02f476c 100644
Binary files a/data/from_beyond.rda and b/data/from_beyond.rda differ
diff --git a/data/he.rda b/data/he.rda
index 22cad87..6ad0845 100644
Binary files a/data/he.rda and b/data/he.rda differ
diff --git a/data/herbert_west_reanimator.rda b/data/herbert_west_reanimator.rda
index f41bf25..51b1800 100644
Binary files a/data/herbert_west_reanimator.rda and b/data/herbert_west_reanimator.rda differ
diff --git a/data/hypnos.rda b/data/hypnos.rda
index 2648b0b..be20c82 100644
Binary files a/data/hypnos.rda and b/data/hypnos.rda differ
diff --git a/data/imprisoned_with_the_pharoahs.rda b/data/imprisoned_with_the_pharoahs.rda
index 0d89669..830e2c8 100644
Binary files a/data/imprisoned_with_the_pharoahs.rda and b/data/imprisoned_with_the_pharoahs.rda differ
diff --git a/data/in_the_vault.rda b/data/in_the_vault.rda
index 1a5257a..081d360 100644
Binary files a/data/in_the_vault.rda and b/data/in_the_vault.rda differ
diff --git a/data/lovecraft.rda b/data/lovecraft.rda
index bde73df..3d95032 100644
Binary files a/data/lovecraft.rda and b/data/lovecraft.rda differ
diff --git a/data/medusas_coil.rda b/data/medusas_coil.rda
index 700ae82..bd21ca4 100644
Binary files a/data/medusas_coil.rda and b/data/medusas_coil.rda differ
diff --git a/data/memory.rda b/data/memory.rda
index 9caf3d1..493e510 100644
Binary files a/data/memory.rda and b/data/memory.rda differ
diff --git a/data/nyarlathotep.rda b/data/nyarlathotep.rda
index 0118205..6ca6527 100644
Binary files a/data/nyarlathotep.rda and b/data/nyarlathotep.rda differ
diff --git a/data/pickmans_model.rda b/data/pickmans_model.rda
index 37c7368..d961204 100644
Binary files a/data/pickmans_model.rda and b/data/pickmans_model.rda differ
diff --git a/data/poetry_of_the_gods.rda b/data/poetry_of_the_gods.rda
index 80d2a03..d08dd68 100644
Binary files a/data/poetry_of_the_gods.rda and b/data/poetry_of_the_gods.rda differ
diff --git a/data/polaris.rda b/data/polaris.rda
index 4e2ed4b..fa290d8 100644
Binary files a/data/polaris.rda and b/data/polaris.rda differ
diff --git a/data/the_alchemist.rda b/data/the_alchemist.rda
index 4456fd4..577accf 100644
Binary files a/data/the_alchemist.rda and b/data/the_alchemist.rda differ
diff --git a/data/the_beast_in_the_cave.rda b/data/the_beast_in_the_cave.rda
index 8a5398a..92b7781 100644
Binary files a/data/the_beast_in_the_cave.rda and b/data/the_beast_in_the_cave.rda differ
diff --git a/data/the_book.rda b/data/the_book.rda
index 872e284..d0891ae 100644
Binary files a/data/the_book.rda and b/data/the_book.rda differ
diff --git a/data/the_call_of_cthulhu.rda b/data/the_call_of_cthulhu.rda
index cfed0b7..96acf62 100644
Binary files a/data/the_call_of_cthulhu.rda and b/data/the_call_of_cthulhu.rda differ
diff --git a/data/the_case_of_charles_dexter_ward.rda b/data/the_case_of_charles_dexter_ward.rda
index 9aebaaf..409f26e 100644
Binary files a/data/the_case_of_charles_dexter_ward.rda and b/data/the_case_of_charles_dexter_ward.rda differ
diff --git a/data/the_cats_of_ulthar.rda b/data/the_cats_of_ulthar.rda
index 8e86586..32f26e3 100644
Binary files a/data/the_cats_of_ulthar.rda and b/data/the_cats_of_ulthar.rda differ
diff --git a/data/the_colour_out_of_space.rda b/data/the_colour_out_of_space.rda
index be10993..ec1a059 100644
Binary files a/data/the_colour_out_of_space.rda and b/data/the_colour_out_of_space.rda differ
diff --git a/data/the_crawling_chaos.rda b/data/the_crawling_chaos.rda
index 1a7a094..43059b8 100644
Binary files a/data/the_crawling_chaos.rda and b/data/the_crawling_chaos.rda differ
diff --git a/data/the_descendent.rda b/data/the_descendent.rda
index b0286b4..93870f3 100644
Binary files a/data/the_descendent.rda and b/data/the_descendent.rda differ
diff --git a/data/the_doom_that_came_to_sarnath.rda b/data/the_doom_that_came_to_sarnath.rda
index 5bc5fdc..6f6b486 100644
Binary files a/data/the_doom_that_came_to_sarnath.rda and b/data/the_doom_that_came_to_sarnath.rda differ
diff --git a/data/the_dream_quest_of_unknown_kadath.rda b/data/the_dream_quest_of_unknown_kadath.rda
index 8b5b7d1..6ca1b12 100644
Binary files a/data/the_dream_quest_of_unknown_kadath.rda and b/data/the_dream_quest_of_unknown_kadath.rda differ
diff --git a/data/the_dunwich_horror.rda b/data/the_dunwich_horror.rda
index 3a1c634..28cf816 100644
Binary files a/data/the_dunwich_horror.rda and b/data/the_dunwich_horror.rda differ
diff --git a/data/the_evil_clergyman.rda b/data/the_evil_clergyman.rda
index 2a24b5b..574ff77 100644
Binary files a/data/the_evil_clergyman.rda and b/data/the_evil_clergyman.rda differ
diff --git a/data/the_festival.rda b/data/the_festival.rda
index 1324050..93bc3cf 100644
Binary files a/data/the_festival.rda and b/data/the_festival.rda differ
diff --git a/data/the_haunter_of_the_dark.rda b/data/the_haunter_of_the_dark.rda
index 9808019..4f280a0 100644
Binary files a/data/the_haunter_of_the_dark.rda and b/data/the_haunter_of_the_dark.rda differ
diff --git a/data/the_horror_at_martins_beach.rda b/data/the_horror_at_martins_beach.rda
index f18002f..34aa93f 100644
Binary files a/data/the_horror_at_martins_beach.rda and b/data/the_horror_at_martins_beach.rda differ
diff --git a/data/the_horror_at_redhook.rda b/data/the_horror_at_redhook.rda
index ac46cf4..0d82bc1 100644
Binary files a/data/the_horror_at_redhook.rda and b/data/the_horror_at_redhook.rda differ
diff --git a/data/the_hound.rda b/data/the_hound.rda
index e40452e..d0afd46 100644
Binary files a/data/the_hound.rda and b/data/the_hound.rda differ
diff --git a/data/the_lurking_fear.rda b/data/the_lurking_fear.rda
index aac04e3..baf6b82 100644
Binary files a/data/the_lurking_fear.rda and b/data/the_lurking_fear.rda differ
diff --git a/data/the_moon_bog.rda b/data/the_moon_bog.rda
index a8ff54f..4e6184b 100644
Binary files a/data/the_moon_bog.rda and b/data/the_moon_bog.rda differ
diff --git a/data/the_music_of_erich_zann.rda b/data/the_music_of_erich_zann.rda
index da9b477..a2ea7bf 100644
Binary files a/data/the_music_of_erich_zann.rda and b/data/the_music_of_erich_zann.rda differ
diff --git a/data/the_nameless_city.rda b/data/the_nameless_city.rda
index 05b5477..5b247f2 100644
Binary files a/data/the_nameless_city.rda and b/data/the_nameless_city.rda differ
diff --git a/data/the_other_gods.rda b/data/the_other_gods.rda
index 2289da2..257c073 100644
Binary files a/data/the_other_gods.rda and b/data/the_other_gods.rda differ
diff --git a/data/the_outsider.rda b/data/the_outsider.rda
index 8b664c0..1c810f0 100644
Binary files a/data/the_outsider.rda and b/data/the_outsider.rda differ
diff --git a/data/the_picture_in_the_house.rda b/data/the_picture_in_the_house.rda
index 86aecf7..b85b945 100644
Binary files a/data/the_picture_in_the_house.rda and b/data/the_picture_in_the_house.rda differ
diff --git a/data/the_quest_of_iranon.rda b/data/the_quest_of_iranon.rda
index 6f451b6..d2b5ac2 100644
Binary files a/data/the_quest_of_iranon.rda and b/data/the_quest_of_iranon.rda differ
diff --git a/data/the_rats_in_the_walls.rda b/data/the_rats_in_the_walls.rda
index 9819300..8b79bd1 100644
Binary files a/data/the_rats_in_the_walls.rda and b/data/the_rats_in_the_walls.rda differ
diff --git a/data/the_shadow_out_of_time.rda b/data/the_shadow_out_of_time.rda
index 74e544a..9a92374 100644
Binary files a/data/the_shadow_out_of_time.rda and b/data/the_shadow_out_of_time.rda differ
diff --git a/data/the_shadow_over_innsmouth.rda b/data/the_shadow_over_innsmouth.rda
index 0906aa0..ba305cf 100644
Binary files a/data/the_shadow_over_innsmouth.rda and b/data/the_shadow_over_innsmouth.rda differ
diff --git a/data/the_shunned_house.rda b/data/the_shunned_house.rda
index 59a4d7f..75e4ccf 100644
Binary files a/data/the_shunned_house.rda and b/data/the_shunned_house.rda differ
diff --git a/data/the_silver_key.rda b/data/the_silver_key.rda
index 0b4eb6f..804c6a5 100644
Binary files a/data/the_silver_key.rda and b/data/the_silver_key.rda differ
diff --git a/data/the_statement_of_randolph_carter.rda b/data/the_statement_of_randolph_carter.rda
index 73ecc52..2d24d33 100644
Binary files a/data/the_statement_of_randolph_carter.rda and b/data/the_statement_of_randolph_carter.rda differ
diff --git a/data/the_strange_high_house_in_the_mist.rda b/data/the_strange_high_house_in_the_mist.rda
index b819240..cdee23e 100644
Binary files a/data/the_strange_high_house_in_the_mist.rda and b/data/the_strange_high_house_in_the_mist.rda differ
diff --git a/data/the_street.rda b/data/the_street.rda
index cd8e4af..ed60af5 100644
Binary files a/data/the_street.rda and b/data/the_street.rda differ
diff --git a/data/the_temple.rda b/data/the_temple.rda
index 625344a..5fa81bf 100644
Binary files a/data/the_temple.rda and b/data/the_temple.rda differ
diff --git a/data/the_terrible_old_man.rda b/data/the_terrible_old_man.rda
index 3bd1efa..86e6200 100644
Binary files a/data/the_terrible_old_man.rda and b/data/the_terrible_old_man.rda differ
diff --git a/data/the_thing_on_the_doorstep.rda b/data/the_thing_on_the_doorstep.rda
index 6fd3330..177f147 100644
Binary files a/data/the_thing_on_the_doorstep.rda and b/data/the_thing_on_the_doorstep.rda differ
diff --git a/data/the_tomb.rda b/data/the_tomb.rda
index 1fa9a97..4aca054 100644
Binary files a/data/the_tomb.rda and b/data/the_tomb.rda differ
diff --git a/data/the_transition_of_juan_romero.rda b/data/the_transition_of_juan_romero.rda
index fa1b33c..902b064 100644
Binary files a/data/the_transition_of_juan_romero.rda and b/data/the_transition_of_juan_romero.rda differ
diff --git a/data/the_tree.rda b/data/the_tree.rda
index 8535fa6..f6863d7 100644
Binary files a/data/the_tree.rda and b/data/the_tree.rda differ
diff --git a/data/the_unnamable.rda b/data/the_unnamable.rda
index 2faf38b..bf562af 100644
Binary files a/data/the_unnamable.rda and b/data/the_unnamable.rda differ
diff --git a/data/the_very_old_folk.rda b/data/the_very_old_folk.rda
index 1e5f470..0fa1150 100644
Binary files a/data/the_very_old_folk.rda and b/data/the_very_old_folk.rda differ
diff --git a/data/the_whisperer_in_darkness.rda b/data/the_whisperer_in_darkness.rda
index 108ef30..3dfed2b 100644
Binary files a/data/the_whisperer_in_darkness.rda and b/data/the_whisperer_in_darkness.rda differ
diff --git a/data/the_white_ship.rda b/data/the_white_ship.rda
index 36c7191..fdbfa78 100644
Binary files a/data/the_white_ship.rda and b/data/the_white_ship.rda differ
diff --git a/data/through_the_gates_of_the_silver_key.rda b/data/through_the_gates_of_the_silver_key.rda
index e6cfebb..fb191fb 100644
Binary files a/data/through_the_gates_of_the_silver_key.rda and b/data/through_the_gates_of_the_silver_key.rda differ
diff --git a/data/what_the_moon_brings.rda b/data/what_the_moon_brings.rda
index 2d3c978..d3dbb53 100644
Binary files a/data/what_the_moon_brings.rda and b/data/what_the_moon_brings.rda differ
diff --git a/man/at_the_mountains_of_madness.Rd b/man/at_the_mountains_of_madness.Rd
index ff7da5e..b5b69e2 100644
--- a/man/at_the_mountains_of_madness.Rd
+++ b/man/at_the_mountains_of_madness.Rd
@@ -9,8 +9,12 @@ A character vector with 3,579 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/at_the_mountains_of_madness}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/at_the_mountains_of_madness.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/at_the_mountains_of_madness}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/at_the_mountains_of_madness.rda}{RDA file}
+}
}
\usage{
data(at_the_mountains_of_madness)
diff --git a/man/azathoth.Rd b/man/azathoth.Rd
index 223fedc..fdab3e6 100644
--- a/man/azathoth.Rd
+++ b/man/azathoth.Rd
@@ -9,8 +9,12 @@ A character vector with 37 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/azathoth}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/azathoth.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/azathoth}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/azathoth.rda}{RDA file}
+}
}
\usage{
data(azathoth)
diff --git a/man/beyond_the_wall_of_sleep.Rd b/man/beyond_the_wall_of_sleep.Rd
index 1ab3c47..6a3c186 100644
--- a/man/beyond_the_wall_of_sleep.Rd
+++ b/man/beyond_the_wall_of_sleep.Rd
@@ -9,8 +9,12 @@ A character vector with 361 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/beyond_the_wall_of_sleep}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/beyond_the_wall_of_sleep.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/beyond_the_wall_of_sleep}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/beyond_the_wall_of_sleep.rda}{RDA file}
+}
}
\usage{
data(beyond_the_wall_of_sleep)
diff --git a/man/celephais.Rd b/man/celephais.Rd
index c6907f7..63138a9 100644
--- a/man/celephais.Rd
+++ b/man/celephais.Rd
@@ -9,8 +9,12 @@ A character vector with 202 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/celephais}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/celephais.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/celephais}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/celephais.rda}{RDA file}
+}
}
\usage{
data(celephais)
diff --git a/man/cool_air.Rd b/man/cool_air.Rd
index 0556f64..e40f231 100644
--- a/man/cool_air.Rd
+++ b/man/cool_air.Rd
@@ -9,8 +9,12 @@ A character vector with 292 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/cool_air}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/cool_air.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/cool_air}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/cool_air.rda}{RDA file}
+}
}
\usage{
data(cool_air)
diff --git a/man/dagon.Rd b/man/dagon.Rd
index 7352890..b7d585d 100644
--- a/man/dagon.Rd
+++ b/man/dagon.Rd
@@ -9,8 +9,12 @@ A character vector with 187 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/dagon}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/dagon.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/dagon}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/dagon.rda}{RDA file}
+}
}
\usage{
data(dagon)
diff --git a/man/dreams_in_the_witch_house.Rd b/man/dreams_in_the_witch_house.Rd
index 05083f0..d4bfa93 100644
--- a/man/dreams_in_the_witch_house.Rd
+++ b/man/dreams_in_the_witch_house.Rd
@@ -9,8 +9,12 @@ A character vector with 1,271 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/dreams_in_the_witch_house}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/dreams_in_the_witch_house.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/dreams_in_the_witch_house}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/dreams_in_the_witch_house.rda}{RDA file}
+}
}
\usage{
data(dreams_in_the_witch_house)
diff --git a/man/ex_oblivione.Rd b/man/ex_oblivione.Rd
index 623e063..eee7d20 100644
--- a/man/ex_oblivione.Rd
+++ b/man/ex_oblivione.Rd
@@ -9,8 +9,12 @@ A character vector with 66 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/ex_oblivione}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/ex_oblivione.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/ex_oblivione}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/ex_oblivione.rda}{RDA file}
+}
}
\usage{
data(ex_oblivione)
diff --git a/man/facts_concerning_the_late_arthur_jermyn_and_his_family.Rd b/man/facts_concerning_the_late_arthur_jermyn_and_his_family.Rd
index 6be1533..24dd77d 100644
--- a/man/facts_concerning_the_late_arthur_jermyn_and_his_family.Rd
+++ b/man/facts_concerning_the_late_arthur_jermyn_and_his_family.Rd
@@ -9,8 +9,12 @@ A character vector with 303 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/facts_concerning_the_late_arthur_jermyn_and_his_family}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/facts_concerning_the_late_arthur_jermyn_and_his_family.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/facts_concerning_the_late_arthur_jermyn_and_his_family}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/facts_concerning_the_late_arthur_jermyn_and_his_family.rda}{RDA file}
+}
}
\usage{
data(facts_concerning_the_late_arthur_jermyn_and_his_family)
diff --git a/man/from_beyond.Rd b/man/from_beyond.Rd
index aaede42..d2e5cca 100644
--- a/man/from_beyond.Rd
+++ b/man/from_beyond.Rd
@@ -9,8 +9,12 @@ A character vector with 222 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/from_beyond}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/from_beyond.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/from_beyond}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/from_beyond.rda}{RDA file}
+}
}
\usage{
data(from_beyond)
diff --git a/man/he.Rd b/man/he.Rd
index e432788..4f28b52 100644
--- a/man/he.Rd
+++ b/man/he.Rd
@@ -9,8 +9,12 @@ A character vector with 360 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/he}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/he.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/he}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/he.rda}{RDA file}
+}
}
\usage{
data(he)
diff --git a/man/herbert_west_reanimator.Rd b/man/herbert_west_reanimator.Rd
index 15213a4..69a0ac5 100644
--- a/man/herbert_west_reanimator.Rd
+++ b/man/herbert_west_reanimator.Rd
@@ -9,8 +9,12 @@ A character vector with 1,053 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/herbert_west_reanimator}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/herbert_west_reanimator.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/herbert_west_reanimator}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/herbert_west_reanimator.rda}{RDA file}
+}
}
\usage{
data(herbert_west_reanimator)
diff --git a/man/hypnos.Rd b/man/hypnos.Rd
index 268a7ea..68bc2b6 100644
--- a/man/hypnos.Rd
+++ b/man/hypnos.Rd
@@ -9,8 +9,12 @@ A character vector with 233 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/hypnos}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/hypnos.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/hypnos}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/hypnos.rda}{RDA file}
+}
}
\usage{
data(hypnos)
diff --git a/man/imprisoned_with_the_pharoahs.Rd b/man/imprisoned_with_the_pharoahs.Rd
index eec5a28..9582b56 100644
--- a/man/imprisoned_with_the_pharoahs.Rd
+++ b/man/imprisoned_with_the_pharoahs.Rd
@@ -9,8 +9,12 @@ A character vector with 948 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/imprisoned_with_the_pharoahs}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/imprisoned_with_the_pharoahs.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/imprisoned_with_the_pharoahs}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/imprisoned_with_the_pharoahs.rda}{RDA file}
+}
}
\usage{
data(imprisoned_with_the_pharoahs)
diff --git a/man/in_the_vault.Rd b/man/in_the_vault.Rd
index ad290c8..c4b6fa0 100644
--- a/man/in_the_vault.Rd
+++ b/man/in_the_vault.Rd
@@ -9,8 +9,12 @@ A character vector with 272 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/in_the_vault}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/in_the_vault.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/in_the_vault}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/in_the_vault.rda}{RDA file}
+}
}
\usage{
data(in_the_vault)
diff --git a/man/lovecraft.Rd b/man/lovecraft.Rd
index 0e114f4..1b7ad10 100644
--- a/man/lovecraft.Rd
+++ b/man/lovecraft.Rd
@@ -13,6 +13,8 @@ A tibble with 43,347 rows and 2 columns:
}
\source{
Public domain.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
}
\usage{
data(lovecraft)
diff --git a/man/medusas_coil.Rd b/man/medusas_coil.Rd
index f432d08..e8c41b6 100644
--- a/man/medusas_coil.Rd
+++ b/man/medusas_coil.Rd
@@ -9,8 +9,12 @@ A character vector with 1,443 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/medusas_coil}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/medusas_coil.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/medusas_coil}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/medusas_coil.rda}{RDA file}
+}
}
\usage{
data(medusas_coil)
diff --git a/man/memory.Rd b/man/memory.Rd
index 53014b3..6606ff7 100644
--- a/man/memory.Rd
+++ b/man/memory.Rd
@@ -9,8 +9,12 @@ A character vector with 31 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/memory}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/memory.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/memory}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/memory.rda}{RDA file}
+}
}
\usage{
data(memory)
diff --git a/man/nyarlathotep.Rd b/man/nyarlathotep.Rd
index 712e959..0e5840f 100644
--- a/man/nyarlathotep.Rd
+++ b/man/nyarlathotep.Rd
@@ -9,8 +9,12 @@ A character vector with 97 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/nyarlathotep}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/nyarlathotep.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/nyarlathotep}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/nyarlathotep.rda}{RDA file}
+}
}
\usage{
data(nyarlathotep)
diff --git a/man/pickmans_model.Rd b/man/pickmans_model.Rd
index 6933842..326f62a 100644
--- a/man/pickmans_model.Rd
+++ b/man/pickmans_model.Rd
@@ -9,8 +9,12 @@ A character vector with 455 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/pickmans_model}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/pickmans_model.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/pickmans_model}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/pickmans_model.rda}{RDA file}
+}
}
\usage{
data(pickmans_model)
diff --git a/man/poetry_of_the_gods.Rd b/man/poetry_of_the_gods.Rd
index 239016b..6060744 100644
--- a/man/poetry_of_the_gods.Rd
+++ b/man/poetry_of_the_gods.Rd
@@ -9,8 +9,12 @@ A character vector with 157 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/poetry_of_the_gods}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/poetry_of_the_gods.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/poetry_of_the_gods}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/poetry_of_the_gods.rda}{RDA file}
+}
}
\usage{
data(poetry_of_the_gods)
diff --git a/man/polaris.Rd b/man/polaris.Rd
index abdd0d7..c7bffe4 100644
--- a/man/polaris.Rd
+++ b/man/polaris.Rd
@@ -9,8 +9,12 @@ A character vector with 129 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/polaris}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/polaris.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/polaris}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/polaris.rda}{RDA file}
+}
}
\usage{
data(polaris)
diff --git a/man/the_alchemist.Rd b/man/the_alchemist.Rd
index b0b9c9f..2b13931 100644
--- a/man/the_alchemist.Rd
+++ b/man/the_alchemist.Rd
@@ -9,8 +9,12 @@ A character vector with 295 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_alchemist}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_alchemist.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_alchemist}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_alchemist.rda}{RDA file}
+}
}
\usage{
data(the_alchemist)
diff --git a/man/the_beast_in_the_cave.Rd b/man/the_beast_in_the_cave.Rd
index 9d7d0d7..b75fab6 100644
--- a/man/the_beast_in_the_cave.Rd
+++ b/man/the_beast_in_the_cave.Rd
@@ -9,8 +9,12 @@ A character vector with 204 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_beast_in_the_cave}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_beast_in_the_cave.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_beast_in_the_cave}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_beast_in_the_cave.rda}{RDA file}
+}
}
\usage{
data(the_beast_in_the_cave)
diff --git a/man/the_book.Rd b/man/the_book.Rd
index ba5cbc0..7507493 100644
--- a/man/the_book.Rd
+++ b/man/the_book.Rd
@@ -9,8 +9,12 @@ A character vector with 95 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_book}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_book.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_book}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_book.rda}{RDA file}
+}
}
\usage{
data(the_book)
diff --git a/man/the_call_of_cthulhu.Rd b/man/the_call_of_cthulhu.Rd
index 2dc99f8..e3b3ef2 100644
--- a/man/the_call_of_cthulhu.Rd
+++ b/man/the_call_of_cthulhu.Rd
@@ -9,8 +9,12 @@ A character vector with 1,030 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_call_of_cthulhu}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_call_of_cthulhu.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_call_of_cthulhu}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_call_of_cthulhu.rda}{RDA file}
+}
}
\usage{
data(the_call_of_cthulhu)
diff --git a/man/the_case_of_charles_dexter_ward.Rd b/man/the_case_of_charles_dexter_ward.Rd
index 04a82ee..e8d31c4 100644
--- a/man/the_case_of_charles_dexter_ward.Rd
+++ b/man/the_case_of_charles_dexter_ward.Rd
@@ -9,8 +9,12 @@ A character vector with 4,358 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_case_of_charles_dexter_ward}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_case_of_charles_dexter_ward.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_case_of_charles_dexter_ward}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_case_of_charles_dexter_ward.rda}{RDA file}
+}
}
\usage{
data(the_case_of_charles_dexter_ward)
diff --git a/man/the_cats_of_ulthar.Rd b/man/the_cats_of_ulthar.Rd
index ba6cc2a..e447e64 100644
--- a/man/the_cats_of_ulthar.Rd
+++ b/man/the_cats_of_ulthar.Rd
@@ -9,8 +9,12 @@ A character vector with 109 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_cats_of_ulthar}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_cats_of_ulthar.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_cats_of_ulthar}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_cats_of_ulthar.rda}{RDA file}
+}
}
\usage{
data(the_cats_of_ulthar)
diff --git a/man/the_colour_out_of_space.Rd b/man/the_colour_out_of_space.Rd
index 66ebb19..492d588 100644
--- a/man/the_colour_out_of_space.Rd
+++ b/man/the_colour_out_of_space.Rd
@@ -9,8 +9,12 @@ A character vector with 967 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_colour_out_of_space}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_colour_out_of_space.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_colour_out_of_space}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_colour_out_of_space.rda}{RDA file}
+}
}
\usage{
data(the_colour_out_of_space)
diff --git a/man/the_crawling_chaos.Rd b/man/the_crawling_chaos.Rd
index 08534c1..cc1398f 100644
--- a/man/the_crawling_chaos.Rd
+++ b/man/the_crawling_chaos.Rd
@@ -9,8 +9,12 @@ A character vector with 234 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_crawling_chaos}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_crawling_chaos.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_crawling_chaos}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_crawling_chaos.rda}{RDA file}
+}
}
\usage{
data(the_crawling_chaos)
diff --git a/man/the_descendent.Rd b/man/the_descendent.Rd
index 9016d90..3a43777 100644
--- a/man/the_descendent.Rd
+++ b/man/the_descendent.Rd
@@ -9,8 +9,12 @@ A character vector with 121 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_descendent}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_descendent.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_descendent}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_descendent.rda}{RDA file}
+}
}
\usage{
data(the_descendent)
diff --git a/man/the_doom_that_came_to_sarnath.Rd b/man/the_doom_that_came_to_sarnath.Rd
index 1adb7b0..575e85b 100644
--- a/man/the_doom_that_came_to_sarnath.Rd
+++ b/man/the_doom_that_came_to_sarnath.Rd
@@ -9,8 +9,12 @@ A character vector with 218 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_doom_that_came_to_sarnath}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_doom_that_came_to_sarnath.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_doom_that_came_to_sarnath}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_doom_that_came_to_sarnath.rda}{RDA file}
+}
}
\usage{
data(the_doom_that_came_to_sarnath)
diff --git a/man/the_dream_quest_of_unknown_kadath.Rd b/man/the_dream_quest_of_unknown_kadath.Rd
index 1468576..2e7c640 100644
--- a/man/the_dream_quest_of_unknown_kadath.Rd
+++ b/man/the_dream_quest_of_unknown_kadath.Rd
@@ -9,8 +9,12 @@ A character vector with 3,475 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_dream_quest_of_unknown_kadath}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_dream_quest_of_unknown_kadath.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_dream_quest_of_unknown_kadath}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_dream_quest_of_unknown_kadath.rda}{RDA file}
+}
}
\usage{
data(the_dream_quest_of_unknown_kadath)
diff --git a/man/the_dunwich_horror.Rd b/man/the_dunwich_horror.Rd
index 1cfa337..bd8cac0 100644
--- a/man/the_dunwich_horror.Rd
+++ b/man/the_dunwich_horror.Rd
@@ -9,8 +9,12 @@ A character vector with 1,533 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_dunwich_horror}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_dunwich_horror.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_dunwich_horror}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_dunwich_horror.rda}{RDA file}
+}
}
\usage{
data(the_dunwich_horror)
diff --git a/man/the_evil_clergyman.Rd b/man/the_evil_clergyman.Rd
index 95bc74c..697240d 100644
--- a/man/the_evil_clergyman.Rd
+++ b/man/the_evil_clergyman.Rd
@@ -9,8 +9,12 @@ A character vector with 147 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_evil_clergyman}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_evil_clergyman.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_evil_clergyman}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_evil_clergyman.rda}{RDA file}
+}
}
\usage{
data(the_evil_clergyman)
diff --git a/man/the_festival.Rd b/man/the_festival.Rd
index d1ee4f6..7d858fb 100644
--- a/man/the_festival.Rd
+++ b/man/the_festival.Rd
@@ -9,8 +9,12 @@ A character vector with 303 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_festival}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_festival.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_festival}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_festival.rda}{RDA file}
+}
}
\usage{
data(the_festival)
diff --git a/man/the_haunter_of_the_dark.Rd b/man/the_haunter_of_the_dark.Rd
index 2635a15..8bbc35c 100644
--- a/man/the_haunter_of_the_dark.Rd
+++ b/man/the_haunter_of_the_dark.Rd
@@ -9,8 +9,12 @@ A character vector with 828 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_haunter_of_the_dark}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_haunter_of_the_dark.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_haunter_of_the_dark}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_haunter_of_the_dark.rda}{RDA file}
+}
}
\usage{
data(the_haunter_of_the_dark)
diff --git a/man/the_horror_at_martins_beach.Rd b/man/the_horror_at_martins_beach.Rd
index 786ae77..9f4a746 100644
--- a/man/the_horror_at_martins_beach.Rd
+++ b/man/the_horror_at_martins_beach.Rd
@@ -9,8 +9,12 @@ A character vector with 225 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_horror_at_martins_beach}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_horror_at_martins_beach.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_horror_at_martins_beach}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_horror_at_martins_beach.rda}{RDA file}
+}
}
\usage{
data(the_horror_at_martins_beach)
diff --git a/man/the_horror_at_redhook.Rd b/man/the_horror_at_redhook.Rd
index d52f4bc..03ae9ce 100644
--- a/man/the_horror_at_redhook.Rd
+++ b/man/the_horror_at_redhook.Rd
@@ -9,8 +9,12 @@ A character vector with 702 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_horror_at_redhook}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_horror_at_redhook.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_horror_at_redhook}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_horror_at_redhook.rda}{RDA file}
+}
}
\usage{
data(the_horror_at_redhook)
diff --git a/man/the_hound.Rd b/man/the_hound.Rd
index 18d4c01..01defb6 100644
--- a/man/the_hound.Rd
+++ b/man/the_hound.Rd
@@ -9,8 +9,12 @@ A character vector with 266 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_hound}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_hound.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_hound}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_hound.rda}{RDA file}
+}
}
\usage{
data(the_hound)
diff --git a/man/the_lurking_fear.Rd b/man/the_lurking_fear.Rd
index 6469bcc..e1760f4 100644
--- a/man/the_lurking_fear.Rd
+++ b/man/the_lurking_fear.Rd
@@ -9,8 +9,12 @@ A character vector with 656 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_lurking_fear}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_lurking_fear.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_lurking_fear}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_lurking_fear.rda}{RDA file}
+}
}
\usage{
data(the_lurking_fear)
diff --git a/man/the_moon_bog.Rd b/man/the_moon_bog.Rd
index 808ae38..ffebe4b 100644
--- a/man/the_moon_bog.Rd
+++ b/man/the_moon_bog.Rd
@@ -9,8 +9,12 @@ A character vector with 266 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_moon_bog}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_moon_bog.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_moon_bog}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_moon_bog.rda}{RDA file}
+}
}
\usage{
data(the_moon_bog)
diff --git a/man/the_music_of_erich_zann.Rd b/man/the_music_of_erich_zann.Rd
index 96eab20..8e55a01 100644
--- a/man/the_music_of_erich_zann.Rd
+++ b/man/the_music_of_erich_zann.Rd
@@ -9,8 +9,12 @@ A character vector with 285 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_music_of_erich_zann}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_music_of_erich_zann.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_music_of_erich_zann}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_music_of_erich_zann.rda}{RDA file}
+}
}
\usage{
data(the_music_of_erich_zann)
diff --git a/man/the_nameless_city.Rd b/man/the_nameless_city.Rd
index a6f3274..d7a54ed 100644
--- a/man/the_nameless_city.Rd
+++ b/man/the_nameless_city.Rd
@@ -9,8 +9,12 @@ A character vector with 418 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_nameless_city}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_nameless_city.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_nameless_city}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_nameless_city.rda}{RDA file}
+}
}
\usage{
data(the_nameless_city)
diff --git a/man/the_other_gods.Rd b/man/the_other_gods.Rd
index 379e64a..1dc28b8 100644
--- a/man/the_other_gods.Rd
+++ b/man/the_other_gods.Rd
@@ -9,8 +9,12 @@ A character vector with 160 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_other_gods}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_other_gods.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_other_gods}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_other_gods.rda}{RDA file}
+}
}
\usage{
data(the_other_gods)
diff --git a/man/the_outsider.Rd b/man/the_outsider.Rd
index 7c7ab4f..2182223 100644
--- a/man/the_outsider.Rd
+++ b/man/the_outsider.Rd
@@ -9,8 +9,12 @@ A character vector with 213 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_outsider}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_outsider.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_outsider}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_outsider.rda}{RDA file}
+}
}
\usage{
data(the_outsider)
diff --git a/man/the_picture_in_the_house.Rd b/man/the_picture_in_the_house.Rd
index 7fd6f31..de3eca8 100644
--- a/man/the_picture_in_the_house.Rd
+++ b/man/the_picture_in_the_house.Rd
@@ -9,8 +9,12 @@ A character vector with 263 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_picture_in_the_house}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_picture_in_the_house.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_picture_in_the_house}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_picture_in_the_house.rda}{RDA file}
+}
}
\usage{
data(the_picture_in_the_house)
diff --git a/man/the_quest_of_iranon.Rd b/man/the_quest_of_iranon.Rd
index 153db67..0a85450 100644
--- a/man/the_quest_of_iranon.Rd
+++ b/man/the_quest_of_iranon.Rd
@@ -9,8 +9,12 @@ A character vector with 215 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_quest_of_iranon}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_quest_of_iranon.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_quest_of_iranon}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_quest_of_iranon.rda}{RDA file}
+}
}
\usage{
data(the_quest_of_iranon)
diff --git a/man/the_rats_in_the_walls.Rd b/man/the_rats_in_the_walls.Rd
index be07e35..2c8ab54 100644
--- a/man/the_rats_in_the_walls.Rd
+++ b/man/the_rats_in_the_walls.Rd
@@ -9,8 +9,12 @@ A character vector with 691 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_rats_in_the_walls}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_rats_in_the_walls.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_rats_in_the_walls}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_rats_in_the_walls.rda}{RDA file}
+}
}
\usage{
data(the_rats_in_the_walls)
diff --git a/man/the_shadow_out_of_time.Rd b/man/the_shadow_out_of_time.Rd
index b7eba8c..695e8cf 100644
--- a/man/the_shadow_out_of_time.Rd
+++ b/man/the_shadow_out_of_time.Rd
@@ -9,8 +9,12 @@ A character vector with 2,529 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_shadow_out_of_time}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_shadow_out_of_time.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_shadow_out_of_time}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_shadow_out_of_time.rda}{RDA file}
+}
}
\usage{
data(the_shadow_out_of_time)
diff --git a/man/the_shadow_over_innsmouth.Rd b/man/the_shadow_over_innsmouth.Rd
index 4db65c4..cd7acb6 100644
--- a/man/the_shadow_over_innsmouth.Rd
+++ b/man/the_shadow_over_innsmouth.Rd
@@ -9,8 +9,12 @@ A character vector with 2,318 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_shadow_over_innsmouth}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_shadow_over_innsmouth.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_shadow_over_innsmouth}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_shadow_over_innsmouth.rda}{RDA file}
+}
}
\usage{
data(the_shadow_over_innsmouth)
diff --git a/man/the_shunned_house.Rd b/man/the_shunned_house.Rd
index dc7460e..5e2ca45 100644
--- a/man/the_shunned_house.Rd
+++ b/man/the_shunned_house.Rd
@@ -9,8 +9,12 @@ A character vector with 916 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_shunned_house}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_shunned_house.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_shunned_house}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_shunned_house.rda}{RDA file}
+}
}
\usage{
data(the_shunned_house)
diff --git a/man/the_silver_key.Rd b/man/the_silver_key.Rd
index 91c2388..c5896ca 100644
--- a/man/the_silver_key.Rd
+++ b/man/the_silver_key.Rd
@@ -9,8 +9,12 @@ A character vector with 404 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_silver_key}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_silver_key.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_silver_key}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_silver_key.rda}{RDA file}
+}
}
\usage{
data(the_silver_key)
diff --git a/man/the_statement_of_randolph_carter.Rd b/man/the_statement_of_randolph_carter.Rd
index 0e06c23..d1e821b 100644
--- a/man/the_statement_of_randolph_carter.Rd
+++ b/man/the_statement_of_randolph_carter.Rd
@@ -9,8 +9,12 @@ A character vector with 221 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_statement_of_randolph_carter}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_statement_of_randolph_carter.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_statement_of_randolph_carter}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_statement_of_randolph_carter.rda}{RDA file}
+}
}
\usage{
data(the_statement_of_randolph_carter)
diff --git a/man/the_strange_high_house_in_the_mist.Rd b/man/the_strange_high_house_in_the_mist.Rd
index 19ba6d9..41951da 100644
--- a/man/the_strange_high_house_in_the_mist.Rd
+++ b/man/the_strange_high_house_in_the_mist.Rd
@@ -9,8 +9,12 @@ A character vector with 289 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_strange_high_house_in_the_mist}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_strange_high_house_in_the_mist.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_strange_high_house_in_the_mist}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_strange_high_house_in_the_mist.rda}{RDA file}
+}
}
\usage{
data(the_strange_high_house_in_the_mist)
diff --git a/man/the_street.Rd b/man/the_street.Rd
index cfdd020..137a06f 100644
--- a/man/the_street.Rd
+++ b/man/the_street.Rd
@@ -9,8 +9,12 @@ A character vector with 183 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_street}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_street.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_street}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_street.rda}{RDA file}
+}
}
\usage{
data(the_street)
diff --git a/man/the_temple.Rd b/man/the_temple.Rd
index 867dc47..b59efdf 100644
--- a/man/the_temple.Rd
+++ b/man/the_temple.Rd
@@ -9,8 +9,12 @@ A character vector with 450 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_temple}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_temple.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_temple}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_temple.rda}{RDA file}
+}
}
\usage{
data(the_temple)
diff --git a/man/the_terrible_old_man.Rd b/man/the_terrible_old_man.Rd
index 16914d0..7c2c21d 100644
--- a/man/the_terrible_old_man.Rd
+++ b/man/the_terrible_old_man.Rd
@@ -9,8 +9,12 @@ A character vector with 87 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_terrible_old_man}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_terrible_old_man.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_terrible_old_man}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_terrible_old_man.rda}{RDA file}
+}
}
\usage{
data(the_terrible_old_man)
diff --git a/man/the_thing_on_the_doorstep.Rd b/man/the_thing_on_the_doorstep.Rd
index 89f5162..dc92afb 100644
--- a/man/the_thing_on_the_doorstep.Rd
+++ b/man/the_thing_on_the_doorstep.Rd
@@ -9,8 +9,12 @@ A character vector with 931 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_thing_on_the_doorstep}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_thing_on_the_doorstep.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_thing_on_the_doorstep}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_thing_on_the_doorstep.rda}{RDA file}
+}
}
\usage{
data(the_thing_on_the_doorstep)
diff --git a/man/the_tomb.Rd b/man/the_tomb.Rd
index 88baf0a..692d397 100644
--- a/man/the_tomb.Rd
+++ b/man/the_tomb.Rd
@@ -9,8 +9,12 @@ A character vector with 366 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_tomb}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_tomb.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_tomb}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_tomb.rda}{RDA file}
+}
}
\usage{
data(the_tomb)
diff --git a/man/the_transition_of_juan_romero.Rd b/man/the_transition_of_juan_romero.Rd
index 3db52e1..f594700 100644
--- a/man/the_transition_of_juan_romero.Rd
+++ b/man/the_transition_of_juan_romero.Rd
@@ -9,8 +9,12 @@ A character vector with 234 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_transition_of_juan_romero}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_transition_of_juan_romero.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_transition_of_juan_romero}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_transition_of_juan_romero.rda}{RDA file}
+}
}
\usage{
data(the_transition_of_juan_romero)
diff --git a/man/the_tree.Rd b/man/the_tree.Rd
index be9fdce..090548f 100644
--- a/man/the_tree.Rd
+++ b/man/the_tree.Rd
@@ -9,8 +9,12 @@ A character vector with 127 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_tree}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_tree.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_tree}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_tree.rda}{RDA file}
+}
}
\usage{
data(the_tree)
diff --git a/man/the_unnamable.Rd b/man/the_unnamable.Rd
index 2c3cfe2..cd5260b 100644
--- a/man/the_unnamable.Rd
+++ b/man/the_unnamable.Rd
@@ -9,8 +9,12 @@ A character vector with 239 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_unnamable}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_unnamable.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_unnamable}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_unnamable.rda}{RDA file}
+}
}
\usage{
data(the_unnamable)
diff --git a/man/the_very_old_folk.Rd b/man/the_very_old_folk.Rd
index de3ab65..990e730 100644
--- a/man/the_very_old_folk.Rd
+++ b/man/the_very_old_folk.Rd
@@ -9,8 +9,12 @@ A character vector with 210 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_very_old_folk}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_very_old_folk.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_very_old_folk}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_very_old_folk.rda}{RDA file}
+}
}
\usage{
data(the_very_old_folk)
diff --git a/man/the_whisperer_in_darkness.Rd b/man/the_whisperer_in_darkness.Rd
index 5d990c3..d61f8d1 100644
--- a/man/the_whisperer_in_darkness.Rd
+++ b/man/the_whisperer_in_darkness.Rd
@@ -9,8 +9,12 @@ A character vector with 2,303 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_whisperer_in_darkness}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_whisperer_in_darkness.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_whisperer_in_darkness}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_whisperer_in_darkness.rda}{RDA file}
+}
}
\usage{
data(the_whisperer_in_darkness)
diff --git a/man/the_white_ship.Rd b/man/the_white_ship.Rd
index 3ea9bdf..8ff50ff 100644
--- a/man/the_white_ship.Rd
+++ b/man/the_white_ship.Rd
@@ -9,8 +9,12 @@ A character vector with 200 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_white_ship}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_white_ship.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/the_white_ship}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/the_white_ship.rda}{RDA file}
+}
}
\usage{
data(the_white_ship)
diff --git a/man/through_the_gates_of_the_silver_key.Rd b/man/through_the_gates_of_the_silver_key.Rd
index ff60c0c..e9b131d 100644
--- a/man/through_the_gates_of_the_silver_key.Rd
+++ b/man/through_the_gates_of_the_silver_key.Rd
@@ -9,8 +9,12 @@ A character vector with 1,305 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/through_the_gates_of_the_silver_key}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/through_the_gates_of_the_silver_key.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/through_the_gates_of_the_silver_key}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/through_the_gates_of_the_silver_key.rda}{RDA file}
+}
}
\usage{
data(through_the_gates_of_the_silver_key)
diff --git a/man/what_the_moon_brings.Rd b/man/what_the_moon_brings.Rd
index f4c44d2..bb52ce1 100644
--- a/man/what_the_moon_brings.Rd
+++ b/man/what_the_moon_brings.Rd
@@ -9,8 +9,12 @@ A character vector with 60 elements, with roughly 80 characters per line.
}
\source{
Public domain.
-See the \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/what_the_moon_brings}{raw text file}
-or download the \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/what_the_moon_brings.rda}{RDA file}.
+For more details see the vignette:
+\code{vignette("copyright-status", package = "lovecraftr")}.
+\itemize{
+\item \href{https://raw.githubusercontent.com/jrdnbradford/lovecraftr/main/data-raw/corpus/what_the_moon_brings}{raw text file}
+\item \href{https://github.com/jrdnbradford/lovecraftr/raw/main/data/what_the_moon_brings.rda}{RDA file}
+}
}
\usage{
data(what_the_moon_brings)
diff --git a/vignettes/.gitignore b/vignettes/.gitignore
new file mode 100644
index 0000000..9e2bd63
--- /dev/null
+++ b/vignettes/.gitignore
@@ -0,0 +1,4 @@
+*.html
+*.R
+
+/.quarto/
diff --git a/vignettes/copyright-status.Rmd b/vignettes/copyright-status.Rmd
new file mode 100644
index 0000000..1efb95b
--- /dev/null
+++ b/vignettes/copyright-status.Rmd
@@ -0,0 +1,21 @@
+---
+title: "Copyright Status"
+output: rmarkdown::html_vignette
+vignette: >
+ %\VignetteIndexEntry{copyright-status}
+ %\VignetteEngine{knitr::rmarkdown}
+ %\VignetteEncoding{UTF-8}
+---
+
+The copyright status of H. P. Lovecraft's fiction is a source of some controversy.
+For many works, like "The Call of Cthulhu", any copyright would have already expired.
+For others, it is unclear who owns the copyright if it exists.
+
+The most detailed examination is almost certainly Chris J. Karr's
+["The Black Seas of Copyright"](https://www.aetherial.net/lovecraft/index.html),
+which concludes that the fiction works have entered the public domain.
+
+{lovecraftr} collects these works in good faith for the purpose of academic scholarship
+under the [doctrine of fair use](https://www.copyright.gov/title17/92chap1.html#107).
+If you have a complaint regarding anything that is a part of the package,
+please [file an issue](https://github.com/jrdnbradford/lovecraftr/issues).