This vignette tests pkgdown output rendering for several use cases.

Highlighting

This document uses a variety of linking styles for testing purposes

Code blocks

# Shouldn't get linked
enlist(5)
# Should get linked
MASS::enlist(5)
library(MASS)
enlist(5)
#> [[1]]
#> [1] 5
# Should get linked because MASS was loaded previously
enlist(5)
#> [[1]]
#> [1] 5

Figures

plot(1:10)


External files

x <- readLines("test.txt")
x
#> [1] "a" "b" "c" "d"


Details tag

This should only be shown when required

Some R code

1 + 2
#> [1] 3

Tables

col 1 col 2 col 3 col 4
Brightness Total brightness, total reflectance, spectral intensity \[y = x^2\] test

Mathjax

\[f(x) = \dfrac{1}{\sqrt{2\pi\sigma^2}} e^{-\frac{(x-\mu^2)}{2\sigma^2}}\]

Inline equations: \(y=x^2\)


Widgets

Test spacing above widget.

Test spacing below widget.


Crayon

cat(crayon::red("This is red"), "\n")
#> This is red
cat(crayon::blue("This is blue\n"), "\n")
#> This is blue
#> 

message(crayon::green("This is green"))
#> This is green

warning(crayon::bold("This is bold"))
#> Warning: This is bold

Some text

stop(crayon::italic("This is italic"))
#> Error in eval(expr, envir, enclos): This is italic

Some more text