-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
copy over cow function to ottrpal #154
Conversation
@@ -23,6 +23,7 @@ export(get_gs_pptx) | |||
export(get_image_from_slide) | |||
export(get_image_link_from_slide) | |||
export(get_object_id_notes) | |||
export(get_pages_url) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do I need to also add an @export
to the make_screenshots()
function?
R/get_pages_url.R
Outdated
#' | ||
#' usethis::create_github_token() | ||
#' | ||
#' get_chapters("jhudsl/Documentation_and_Usability") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this example need updated?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah that'd be good
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me! Maybe a minor update in the docs but otherwise it can be merged!
R/get_pages_url.R
Outdated
#' | ||
#' usethis::create_github_token() | ||
#' | ||
#' get_chapters("jhudsl/Documentation_and_Usability") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah that'd be good
As mentioned in code review for PR #153 and various issues (#137 and jhudsl/cow#27) -- Tried to copy over the
cow::get_pages_url()
function so that it's usable without needing to importcow
.I used
wget
to get the raw file for theget_pages_url()
function from thecow
repo and useddevtools::document()
after that. Removed references tocow
within themake_screenshots()
function.