As a developer, I can take a look at my documentation by running pkgdown::build_site()
But as a user, I need to go to the hosted website. What if that website does not exist? In this case, is there a way that a user can browse the documentation? something like
library(myPackage)
view_pkgdown_website('myPackage')
I know a user can call: help(package = "packagename"), or browseVignettes(package = "packagename"), but how can they load the website created by using pkgdown?