Skip to content
This repository was archived by the owner on Jan 15, 2026. It is now read-only.

Latest commit

 

History

History
16 lines (12 loc) · 406 Bytes

File metadata and controls

16 lines (12 loc) · 406 Bytes

<%

Reuse the future vignette

md <- R.rsp::rstring(file="vignettes/future.BatchJobs.md.rsp", postprocess=FALSE)

Drop the header

md <- unlist(strsplit(md, split="\n", fixed=TRUE)) md <- md[-seq_len(grep("^## ", md)[1])]

Drop the footer

md <- md[seq_len(grep("^---", md)[1]-1)]

md <- c("Life cycle: superseded", md)

Output

cat(md, sep="\n") %>