Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 685 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 685 Bytes

sowsear: Make Silk (knitr files) from a sow's ear (an R script)

Build Status

Make silk from a sow's ear by converting a plain R script into something that can be knit()'ed with knitr!

Basically, convert an R script from something like this:

## # Heading
## Description
some.code()

To this

# Heading
Description
``` {r }
some.code()
```

which can then be run through knit.

Note that a version of sowsear is directly available in knitr as spin, though with different defaults.