print,asciiCbind-method {ascii} | R Documentation |
Function displaying the asciidoc, txt2tags, reStructuredText, org or
textile code associated with the supplied object of class ascii
.
## S4 method for signature 'asciiCbind' print( x, type = getOption("asciiType"), file = NULL, append = FALSE, escape = FALSE, list.escape = c("\\_", "\\^"), ... ) ## S4 method for signature 'asciiCbind' show(object) ## S4 method for signature 'asciiTable' print( x, type = getOption("asciiType"), file = NULL, append = FALSE, escape = FALSE, list.escape = c("\\_", "\\^"), ... ) ## S4 method for signature 'asciiTable' show(object) ## S4 method for signature 'asciiList' print( x, type = getOption("asciiType"), file = NULL, append = FALSE, escape = FALSE, list.escape = c("\\_", "\\^"), ... ) ## S4 method for signature 'asciiList' show(object) ## S4 method for signature 'asciiMixed' print( x, type = getOption("asciiType"), file = NULL, append = FALSE, escape = FALSE, list.escape = c("\\_", "\\^"), ... ) ## S4 method for signature 'asciiMixed' show(object) ## S4 method for signature 'Report' print(x, help = FALSE, ...) ## S4 method for signature 'Report' show(object)
x |
An object of class |
type |
Type of syntax produce. Possible values for |
file |
A character string naming the file to print to. Default is
|
append |
If |
escape |
If |
list.escape |
Character vector. Default value is |
... |
Additional arguments. (Currently ignored.) |
object |
ascii or Report object |
help |
logical print help? (objects of class |
The package provides the new global option asciiType
. Default value
is "asciidoc"
(see examples).
David Hajage dhajage@gmail.com
data(esoph) ascii(esoph[1:10,]) print(ascii(esoph[1:10,]), type = "t2t") print(ascii(esoph[1:10,]), type = "rest") print(ascii(esoph[1:10,]), type = "org") print(ascii(esoph[1:10,]), type = "textile") print(ascii(esoph[1:10,]), type = "pandoc") options(asciiType = "rest") ascii(esoph[1:10,]) options(asciiType = "asciidoc")