I'm currently facing an issue where my .Rmarkdown pages are being rendered fine, except I do not see any output being displayed at all. No plots, no tables, nothing. I think somehow, my fig.path has been messed up.
The output for the line knitr::opts_chunk$get('fig.path') is ## [1] "index_files/figure-html/"
How do I fix the problem and reset the fig.path to default? Currently, I see no output being displayed at all, only code chunks.
Hugo will ignore raw HTML by default. This is something we could not change, but just strongly advice to set this option unsafe to TRUE for goldmark renderer.
This issue will not happen when you use Rmd file as they will be generated using Pandoc and not Goldmark.
We've recently added some check function to give all the advice we have for a website. If you install the dev version, you can run blogdown::check_site(). I think you are missing other configuration so it could be useful to you.