pptx_summary function

PowerPoint content in a data.frame

PowerPoint content in a data.frame

Read content of a PowerPoint document and return a dataset representing the document.

pptx_summary(x, preserve = FALSE)

Arguments

  • x: an rpptx object

  • preserve: If FALSE (default), text in table cells is collapsed into a single line. If TRUE, line breaks in table cells are preserved as a "\n" character. This feature is adapted from docxtractr::docx_extract_tbl()

    published under a MIT licensed in the {docxtractr} package by Bob Rudis.

Examples

example_pptx <- system.file(package = "officer", "doc_examples/example.pptx") doc <- read_pptx(example_pptx) pptx_summary(doc) pptx_summary(example_pptx)