-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathupdate_github_sites.R
More file actions
12 lines (10 loc) · 925 Bytes
/
update_github_sites.R
File metadata and controls
12 lines (10 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
# script to update the documentation and vignettes hosted at https://roche.github.io/Global-HTA-Evidence-Open/index.html
# currently just redirects to the seperate repositories following refactor
# update the index page (just converts the README.md to html)
markdown::markdownToHTML("README.md", output = "docs/index.html")
# add redirects for the moved package documentation
markdown::markdownToHTML("Rpackages/flexsurvPlus/README.md", output = "docs/Rpackages/flexsurvPlus/docs/index.html")
markdown::markdownToHTML("Rpackages/gemtcPlus/README.md", output = "docs/Rpackages/gemtcPlus/docs/index.html")
markdown::markdownToHTML("Rpackages/rpsftmPlus/README.md", output = "docs/Rpackages/rpsftmPlus/docs/index.html")
markdown::markdownToHTML("Rpackages/MAIC/README.md", output = "docs/Rpackages/MAIC/docs/index.html")
markdown::markdownToHTML("Rpackages/descem/README.md", output = "docs/Rpackages/descem/docs/index.html")