R/odfPageBreak.R

Defines functions odfPageBreak print.odfPageBreak

Documented in odfPageBreak

odfPageBreak <- function()
{
   x <- list(text='<text:p text:style-name="OdfPageBreak"/>')
   return(structure(x, class='odfPageBreak'))
}

print.odfPageBreak <- function(x, ...)
{
   cat(x$text, '\n', sep='')
}

Try the odfWeave package in your browser

Any scripts or data that you put into this service are public.

odfWeave documentation built on May 30, 2017, 7:23 a.m.