c.block {pandocfilters} | R Documentation |
Combine Block Objects
Description
Objects of class "block"
can be combined by using the generic
default method "c"
(combine).
Usage
## S3 method for class 'block'
c(...)
Arguments
... |
objects to be concatenated. |
Value
an list of "block"
objects.
Examples
c(Header( "R Basics" ), Header("What is R?", level=2),
Plain(c(Emph("R"), Space(), "is a system for ", Strong("statistical computation"))))
[Package pandocfilters version 0.1-6 Index]