At the moment rticles employs either R+ (for evaluated code) or R> (for non-evaluated code) as the continution prompt but + would be requested by JSS.
The code chunk
f(a = 1,
b = 2)
now correctly renders as the journal template example
R> f(a = 1,
+ b = 2)
Inline code formatting
For code in Markdown it is ok to use backtick syntax, so that \code{...} is typically not necessary. Hence I it is ok to remove \code{print("abc")} from skeleton.Rmd, I think.
Changed the way markdown backtick syntax renders to \code{} instead of texttt{} and documented in the skeleton.Rmd
254
The code chunk
now correctly renders as the journal template example
Changed the way markdown backtick syntax renders to
\code{}
instead oftexttt{}
and documented in theskeleton.Rmd