-
-
Notifications
You must be signed in to change notification settings - Fork 980
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error for multiples outputs in render_site #793
Milestone
Comments
yihui
added a commit
that referenced
this issue
Oct 26, 2017
* fix #793: do not use output_options in default_site() because these options do not work for output formats that do not support them, e.g. pdf_document; instead, temporarily patch the `html_document` format options in _site.yml during render() * add a news item * _site.yml is not necessarily under the current working directory (should be under `input`)
This was referenced Apr 27, 2018
This old thread has been automatically locked. If you think you have found something related to this, please open a new issue by following the issue guide (https://yihui.org/issue/), and link to this old issue if necessary. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I create my webpages with rmarkdown, function
render_site
. But I have problems when I use more outputs in yaml. For example:In _site.yml file
In index.Rmd file
Thus, the function
rmarkdown::render_site()
generates the error belowI suppose the problem is related to https://github.com/rstudio/rmarkdown/blob/master/R/render_site.R#L195, because the list in
output_options
is unused in different outputs ofhtml_document
.The text was updated successfully, but these errors were encountered: