as.markdown: Get markdown-formatted full text of a partition.
Description
The method is the worker behind the read-method, which will be called
usually to reconstruct the full text of a partition and read it. The
as.markdown-method can be customized for different classes inheriting
from the partition-class.
# NOT RUN {use("polmineR")
P <- partition("REUTERS", places = "argentina")
as.markdown(P)
as.markdown(P, meta = c("id", "places"))
if (interactive()) read(P, meta = c("id", "places"))
# }