Publish an specific rmarkdown or qmd into wiki repository, specifying the path of the wiki repository once that you already clone this repository into your machine. See Details if is your first time publishing in a wiki repository.
publish_wiki(
report,
path_wiki_repo,
automatic_update = FALSE,
new_file_name = NULL,
quiet_render_logs = FALSE
)
the path of rmarkdown or qmd file
the complete path of wiki repository.
if you like to do automatically the pull, commit and push set in TRUE, if you like to do manually, set FALSE. Default is TRUE.
the new name for the markdown file.
if you like to see the render logs of rmarkdown, set in TRUE, in otherwise set FALSE. Default is TRUE.
Publish a md into wiki repository.
Publish an rmarkdown into wiki repo
If this is the first time you are going to publish in a wiki, you must follow these steps:
The wiki repository must be cloned to a local working folder. To do this first go to the wiki tab of your repository and you will need to manually create the first wiki page. If you don't do this it will tell you that the repository does not exist.
Once you have created the wiki home page, you will need to clone the wiki repository just like you would any other repository on your computer (using the link that is made available to you once you create the wiki home page).
Once you have cloned the wiki on your computer, what you should indicate
in the publica_wiki
function is the path_wiki_repo
. This is the full
address on your computer where this repository you cloned is located. For
example: /home/client/project/wiki_repo
if (FALSE) {
publish_wiki(report = "eda.Rmd",
path_wiki_repo = "/home/cliente/proyecto/wiki_repo")
}