#' Can view the current project log
#' @param dir_name name of the directory to focus on. If NULL, will print back the entire list of directories that is being tracked
#' @export
view_current_project_log <-
function(dir_name = NULL) {
if (is.null(dir_name)) {
print(PROJECT_LOG$CURRENT)
} else {
print(PROJECT_LOG$CURRENT[[dir_name]])
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.