KO
|
EN
gitlite — search
Search
#php
#javascript
#python
#java
#ios
#library
#linux
#ruby
#dotfiles
#wordpress
#jquery
#azure
knitrhooks
★ 33
Open GitHub ↗
Extend {knitr} with hooks
Download README (.md)
Explore Similar Repositories
telecomdatacup
:
Описание задачи
green-screen-video-matting
:
relization the matting for green matting and video composition
charts
:
Demonstrating the tween concept using Flutter and bar charts
vue-tabevents
:
Event-Based communication across opened tabs for Vue 2.x
DrawnTable
:
WinForms control based on PictureBox for creating versatile tables
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
knitrhooks
?
Download (.md)
<!-- README.md is generated from README.Rmd. Please edit that file --> knitrhooks ========== **knitrhooks** provides useful **knitr** hooks to extend the functionality of **knitr**, **Rmarkdown** and **bookdown**. Available Hooks --------------- The below table details the hooks currently available within the package. Some hooks are only available for particular output formats. | hook name | description | HTML | PDF | |---------------------|---------------------------------------------|------|-----| | `output_lines` | Print user specified lines of R output | X | X | | `output_max_height` | Add a scrollbar to output of a given height | X | | | `source_verbatim` | Print verbatim code chunks | X | X | | `chunk_head` | Print chunk headers within outputs | X | X | Usage ----- Currently the package requires you to load the functionality of each given hook before you can use it. [Alternative](https://github.com/nathaneastwood/knitrhooks/issues/3) solutions are currently being considered. <pre> <code>```{r max_height_example} library(knitrhooks) output_max_height() ```</code> # Example document <code>```{r output_max_height = "300px"} print(mtcars) ```</code> </pre> The above code will produce the following HTML document. 