How to add RMD r markdown file to website? #1060
-
I created a RMD file for R tutorial. How can I add into the website. It also includes some code and plots. It can be just plain, no need to be fancy. I just want the address would be user.github.io/filename/ Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You'll have to render the Rmd to an HTML page yourself. If you just place the html page in the root, it'll be accessible. For example if you have a file called If you want to display the html page as-is, then that's all you need to do. If you want the page to inherit beautifuljekyll's templat, then remember to add the frontend YAML (see the README for more info)
|
Beta Was this translation helpful? Give feedback.
You'll have to render the Rmd to an HTML page yourself. If you just place the html page in the root, it'll be accessible. For example if you have a file called
test.html
then it'll be accessible atuser.github.io/test
If you want to display the html page as-is, then that's all you need to do.
If you want the page to inherit beautifuljekyll's templat, then remember to add the frontend YAML (see the README for more info)