From d8dd35313003c2066ece1853ce345979f55b3a5c Mon Sep 17 00:00:00 2001 From: Yihui Xie Date: Tue, 27 Aug 2019 16:37:39 -0500 Subject: [PATCH] move the news item from #1626 to 1.16 --- NEWS.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 998e1eb983..6a411bf2c9 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,13 +1,12 @@ rmarkdown 1.16 ================================================================================ +- It is now possible to add pagebreak in html, word, latex and odt documents using `\newpage` or `\pagebreak` command in a Rmd file. This is possible thanks to [_pandoc's pagebreak lua filter_](https://github.com/pandoc/lua-filters/tree/master/pagebreak). See `vignette("pagebreak", package = "rmarkdown")` rmarkdown 1.15 ================================================================================ -- It is now possible to add pagebreak in html, word, latex and odt documents using `\newpage` or `\pagebreak` command in a Rmd file. This is possible thanks to [_pandoc's pagebreak lua filter_](https://github.com/pandoc/lua-filters/tree/master/pagebreak). See `vignette("pagebreak", package = "rmarkdown")` - - Exclude `README.R?md` from files processed by `render_site()`, - `html_document` with `code_folding: hide` supports showing individual source code chunks if they are assigned the `fold-show` class via the chunk option `class.source="fold-show"` (thanks, @atusy, #1602).