Using the knitrBootstrap popup style

In the link below you will see the current example for cars with a certain dropdown style. When I create the same example, I get a different style in which pop-ups expand the width of the content area. Is there something I need to add to my Rmd in order to use the style on the website?

http://rawgit.com/jimhester/knitrBootstrap/master/vignettes/two-D.html

+4
source share
1 answer

You need to use the github version of the knitrBootstrap package to use buttons, not panels. The CRAN version of the package has only panels. The easiest way to install a package from github is with devtools.

install.packages(devtools) library(devtools) install.packages('jimhester/knitrBootstrap') library(knitrBootstrap)

, knithBootstrap github rmarkdown, rmarkdown::render.

, chunk bootstrap.panel.\

. https://github.com/jimhester/knitrBootstrap.

, CRAN, Rmarkdown CRAN, .

+3

Source: https://habr.com/ru/post/1538887/


All Articles