All Projects → nathaneastwood → Knitrhooks

nathaneastwood / Knitrhooks

Licence: mit
Extend {knitr} with hooks

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Knitrhooks

Wraprmd
RStudio addin for wrapping RMarkdown paragraphs
Stars: ✭ 87 (+171.88%)
Mutual labels:  rmarkdown, knitr
Knitr
A general-purpose tool for dynamic report generation in R
Stars: ✭ 2,134 (+6568.75%)
Mutual labels:  rmarkdown, knitr
Klippy
Copy to Clipboard Buttons for RMarkdown HTML Documents
Stars: ✭ 40 (+25%)
Mutual labels:  rmarkdown, knitr
Rmarkdown Cookbook
R Markdown Cookbook. A range of tips and tricks to make better use of R Markdown.
Stars: ✭ 324 (+912.5%)
Mutual labels:  rmarkdown, knitr
Jupytext
Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts
Stars: ✭ 4,969 (+15428.13%)
Mutual labels:  rmarkdown, knitr
Knitr Book
Dynamic Documents with R and knitr
Stars: ✭ 215 (+571.88%)
Mutual labels:  rmarkdown, knitr
Liftr
🐳 Containerize R Markdown documents for continuous reproducibility
Stars: ✭ 155 (+384.38%)
Mutual labels:  rmarkdown, knitr
Kableextra
Construct Complex Table with knitr::kable() + pipe.
Stars: ✭ 465 (+1353.13%)
Mutual labels:  rmarkdown, knitr
epoxy
Extra-strength glue engines for R Markdown and Quarto
Stars: ✭ 141 (+340.63%)
Mutual labels:  rmarkdown, knitr
r-novice-inflammation
Programming with R
Stars: ✭ 142 (+343.75%)
Mutual labels:  rmarkdown, knitr
xaringan slides
📺 Links to HTML5 presentations made using the R package {xaringan}.
Stars: ✭ 20 (-37.5%)
Mutual labels:  rmarkdown, knitr
reportfactory
Lightweight infrastructure to handle multiple rmarkdown reports
Stars: ✭ 68 (+112.5%)
Mutual labels:  rmarkdown, knitr
Papaja
papaja (Preparing APA Journal Articles) is an R package that provides document formats to produce complete APA manuscripts from RMarkdown-files (PDF and Word documents) and helper functions that facilitate reporting statistics, tables, and plots.
Stars: ✭ 422 (+1218.75%)
Mutual labels:  rmarkdown
Rmarkdown Book
R Markdown: The Definitive Guide (published by Chapman & Hall/CRC in July 2018)
Stars: ✭ 557 (+1640.63%)
Mutual labels:  rmarkdown
Summarytools
R Package to Quickly and Neatly Summarize Data
Stars: ✭ 390 (+1118.75%)
Mutual labels:  rmarkdown
Rticles
LaTeX Journal Article Templates for R Markdown
Stars: ✭ 895 (+2696.88%)
Mutual labels:  rmarkdown
Reprex
Render bits of R code for sharing, e.g., on GitHub or StackOverflow.
Stars: ✭ 553 (+1628.13%)
Mutual labels:  rmarkdown
Knitr Examples
A collection of knitr examples
Stars: ✭ 389 (+1115.63%)
Mutual labels:  knitr
Markdowntemplates
✅🔻 A collection of alternate R markdown templates
Stars: ✭ 287 (+796.88%)
Mutual labels:  rmarkdown
Pander
An R Pandoc Writer: Convert arbitrary R objects into markdown
Stars: ✭ 267 (+734.38%)
Mutual labels:  rmarkdown

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 solutions are currently being considered.

```{r max_height_example}
library(knitrhooks)
output_max_height()
```

# Example document

```{r output_max_height = "300px"}
print(mtcars)
```

The above code will produce the following HTML document.

scrollable_r_output

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].