Releases: yihui/xaringan
xaringan 0.20
- Fixed the bug that HTML widgets stopped working with new versions of htmltools and rmarkdown (thanks, @vcannataro @gadenbuie, #293).
xaringan 0.19
-
The position of headers
h1
,h2
, andh3
were fixed within the useR theme. The logo of the conference was updated within the useR theme in order to match with the recently created visual identity of the conference (thanks, @josschavezf, #288). -
Added the nhsr theme for the NHS-R Community based on the NHS identity guidelines, and also contributed to the
nhsrtheme
package (thanks, @spcanelon, #280).
xaringan 0.18
-
The option
self_contained: true
for the output formatxaringan::moon_reader
supports images written in the syntax![]()
(Markdown),background-image: url()
(background images for slides), and<img src="" />
(HTML) now. Slides generated in the self-contained mode are also much faster to render in web browsers now, especially for slides containing a lot of images (thanks, @srvanderplas #207, @wolass @RLesur @jaredlander #3). -
The two internal functions
xaringan:::protect_math()
andxaringan:::prose_index()
have been removed. They are in the xfun package now, so please usexfun::protect_math()
andxfun::prose_index()
instead. -
The option
anchor_sections
is disabled by default inmoon_reader()
. This option is forrmarkdown::html_document()
to generate anchor links for sections, which is not really useful for xaringan slides.
xaringan 0.17
-
Small updates to KI theme (@ellessenne, #267).
-
The
.pull-right
CSS class has been updated so that multiple.pull-left
/.pull-right
columns can be used on one slide (@gandebuie #271, thanks @ramongallego #260). -
Added a useR theme based on the conference useR2020 guidelines (thanks, @josschavezf, #276).
-
Add nature option
autoplay
can take either a numeric value, or a list of the formlist(interval = N, loop = TRUE)
. The latter form can be used to specify if the autoplay should restart after reaching the last slide (i.e., go to the first slide). By default, the autoplay will not restart after reaching the last slide. See the help pagexaringan::moon_reader
for more information (thanks, @pat-s, #266).
xaringan 0.16
BUG FIXES
- Fixed a bug introduced in #256 that caused htmlwidgets not to render (@gadenbuie #258, thanks @eniso-partners #257).
xaringan 0.15
BUG FIXES
-
infinite_moon_reader()
now accepts additional arguments via...
that are passed tormarkdown::render()
. This improves the addition of theparams
argument ininfinite_moon_reader()
in version 0.14 and allows users to over-ride parameters defined in the top-level YAML in the slides at run time. It also lets users set rendering options, such asquiet = TRUE
or settingoutput_file
(thanks @mstr3336, @gadenbuie, #253). -
Inline
<script>
tags and JavaScript code chunks in the R Markdown source now run in the browser with xaringan (thanks @gadenbuie, #256).
MINOR CHANGES
- Small tweaks to the Karolinska Institutet theme (thanks, ellessenne, #244).
xaringan 0.14
NEW FEATURES
-
Added a theme following the Karolinska Institutet design guidelines (@ellessenne, #238).
-
Added the argument
params
toinfinite_moon_reader()
(@paulklemm, #240).
BUG FIXES
xaringan 0.13
xaringan 0.12
NEW FEATURES
- Added the class
.remark-code-has-line-highlighted
to the<pre>
parent element containing code with highlighted lines (@gadenbuie, #220).
xaringan 0.11
BUG FIXES
{{ }}
in source code could incorrectly highlight a line when}}
is not at the end of a line (thanks, @filipwastberg, #215).