tmpf <- tempfile(fileext = ".Rmd")
writeLines(
"This is a link in parentheses ([example](https://example.com)).",
tmpf
)
aeolus::unleash(tmpf)
readLines(tmpf)
#> [1] "This is a link in parentheses ( [example](https://example.com))."
Created on 2025-08-24 with reprex v2.1.1
Found in datacarpentry/R-ecology-lesson#933.