Title: Print a Daily Bible Proverb to Console
Version: 0.4.0
Description: A simple package to grab a Bible proverb corresponding to the day of the month.
License: MIT + file LICENSE
URL: https://github.com/bradlindblad/proverbs, https://bradlindblad.github.io/proverbs/
BugReports: https://github.com/bradlindblad/proverbs/issues
Imports: checkmate, cli, crayon, httr2, glue, lubridate, purrr, rvest, stringr
Suggests: covr, knitr, rmarkdown, testthat (≥ 3.0.0)
Encoding: UTF-8
RoxygenNote: 7.2.3
VignetteBuilder: knitr
NeedsCompilation: no
Packaged: 2023-11-16 02:26:08 UTC; brad
Author: Brad Lindblad [aut, cre, cph]
Maintainer: Brad Lindblad <me@bradlindblad.com>
Repository: CRAN
Date/Publication: 2023-11-18 14:20:02 UTC

proverbs: Print a Daily Bible Proverb to Console.

Description

A simple package to grab a Bible proverb corresponding to the day of the month.

Author(s)

Maintainer: Brad Lindblad me@bradlindblad.com [copyright holder]

See Also

Useful links:


proverb

Description

Prints out a daily proverb corresponding to the current day of the month. For example, on the 27th of August, Proverbs 27 would be returned.

Usage

proverb(translation = "web", main_color = "cyan", accent_color = "silver")

Arguments

translation

A character string that is available from list returned by translations()

main_color

A character string of a color available in the crayon package. The color for the main body of text.

accent_color

A character string of a color available in the crayon package. The accent color for the passage.

Value

nothing

Note

Several open source translations are available. By default, the World English Bible version is returned. To see which translations are available, use the translations() function.

Examples

## Not run: 
# Return the default translation, which is "web", or World English Bible
proverb()

# Return the King James version verse of the day
proverb(translation="kjv")

# Custom colors
proverb(main_color="red", accent_color="silver")


## End(Not run)

translations

Description

Lists available Bible Versions for proverb()

Usage

translations()

Value

nothing

Examples

## Not run: 
translations()

## End(Not run)