-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update docs * harmonize function-documentation * rename vignettes * add checklist for adding new service * first pass at embed vignette * clean up * Add sample videos * smol edit * begin getting-started * finish vignette("modify"), update others * start work on README, reorganize others * finish get-started vignette
- Loading branch information
Showing
48 changed files
with
659 additions
and
1,435 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,5 +7,7 @@ | |
^cran-comments\.md$ | ||
^codecov\.yml$ | ||
^_pkgdown\.yml$ | ||
^pkgdown$ | ||
^docs$ | ||
^\.github$ | ||
^checklist-new-service\.md$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#' vembedr S3 Classes | ||
#' | ||
#' We use S3 classes to distinguish an embed object, and to denote which service it uses. | ||
#' | ||
#' **`vembedr_embed`** | ||
#' | ||
#' - base class for all services | ||
#' - HTML `<div>` | ||
#' - contains the embed code | ||
#' | ||
#' **`vembedr_embed_youtube`** | ||
#' **`vembedr_embed_youtube_short`** | ||
#' **`vembedr_embed_vimeo`** | ||
#' **`vembedr_embed_channel9`** | ||
#' **`vembedr_embed_box`** | ||
#' | ||
#' @name vembedr-s3-classes | ||
#' | ||
NULL | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
`%||%` <- rlang::`%||%` | ||
#' @importFrom rlang `%||%` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#' vembedr: Package for embedding video | ||
#' | ||
#' The vembedr package lets you embed video into your HTML pages for | ||
#' these services: | ||
#' | ||
#' - YouTube | ||
#' - Vimeo | ||
#' - Microsoft Channel 9 | ||
#' - Box | ||
#' | ||
#' It provides two categories of functions: | ||
#' | ||
#' - **embed** functions, to specify a video to embed: | ||
#' e.g. [embed_youtube()], [embed_url()] | ||
#' - **use** functions, to modify the embedding: | ||
#' e.g. [use_start_time()], [use_rounded()] | ||
#' | ||
#' You can use the pipe (`%>%`) to chain embed function-calls with | ||
#' use function-calls. | ||
#' | ||
#' @docType package | ||
#' @name vembedr-package | ||
NULL |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.