Retrieves the current fallback configuration for MAIDR.
Value
A list with the current fallback settings:
enabled: Logical indicating if fallback is enabledformat: Character string of the image formatwarning: Logical indicating if warnings are shown
Examples
# Get current settings
settings <- maidr_get_fallback()
print(settings)
#> $enabled
#> [1] TRUE
#>
#> $format
#> [1] "png"
#>
#> $warning
#> [1] TRUE
#>