We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Issue:
Until now, omitting "OUTPUT_TYPE" has following behaviour:
If OUTPUT_TYPE is ommited, RMarkdown produces an html document.
But I dislike this, because specifying the desired output format under "output" in the YAML metadata of your document is completely ignored!
Example:
--- title: test author: Luca Leon Happel date: 2020-07-11 Sa 02:48 18 output: pdf_document --- Here is my _really_ fancy text!
produces an html file, when ":RMarkdown" is run!
Possible fix:
Just run :!Rscript -e 'library(rmarkdown);render("%")' would do just what I want.
:!Rscript -e 'library(rmarkdown);render("%")'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue:
Until now, omitting "OUTPUT_TYPE" has following behaviour:
But I dislike this, because specifying the desired output format under "output" in the YAML metadata of your document is completely ignored!
Example:
produces an html file, when ":RMarkdown" is run!
Possible fix:
Just run
:!Rscript -e 'library(rmarkdown);render("%")'
would do just what I want.The text was updated successfully, but these errors were encountered: