pack_course {swirlify} | R Documentation |
Create an .swc
file of the course you are working on
Description
"Pack" the course you are working on into a single compressed file that is
easy to share. Invisibly returns the path to the .swc
file.
Usage
pack_course(export_path = NULL)
Arguments
export_path |
Optional, full path to the directory you want the swirl course file to be exported to. If not specified, then the file will appear in the same directory as the course directory. |
Value
A string, the path to the new .swc
file, invisibly.
Examples
## Not run:
# Set any lesson in the course you want to pack
set_lesson()
# Pack the course
pack_course()
# Export the .swc file to a directory that you specify
pack_course(file.path("~", "Desktop"))
## End(Not run)
[Package swirlify version 0.5.3 Index]