1.0.3 • Published 7 months ago

pptx-sweep v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

pptx-sweep

A utility to remove artifacts from PowerPoint files, such as comments, notes, and metadata.

npm version

How to use

import { pptxSweep } from "pptx-sweep";

const sourceFile = "powerpoint.pptx";
const targetFile = "powerpoint-swept.pptx";

await pptxSweep(sourceFile, targetFile, {
  remove: {
    totalTime: true,
    core: {
      title: true,
      creator: true,
      lastMofiiedBy: true,
      revision: true,
      created: true,
      modified: true,
    },
    thumbnail: true,
    notes: true,
    comments: {
      modern: true,
      legacy: true,
    },
    authors: true,
    view: true,
  },
});

Options

type SweepOptions = {
  remove: {
    totalTime?: boolean;
    core: {
      title?: boolean;
      creator?: boolean;
      lastMofiiedBy?: boolean;
      revision?: boolean;
      created?: boolean;
      modified?: boolean;
    };
    thumbnail?: boolean;
    notes?: boolean;
    comments?: {
      modern?: boolean;
      legacy?: boolean;
    };
    authors?: boolean;
    view?: boolean;
  };
};
OptionDescription
remove.totalTimeRemove the total time of the presentation.
remove.core.titleRemove the title of the presentation.
remove.core.creatorRemove the name of the person who created the presentation.
remove.core.lastMofiiedByRemove the name of the person who last modified the presentation.
remove.core.revisionRemove the revision number.
remove.core.createdRemove the date and time the presentation was created.
remove.core.modifiedRemove the date and time the presentation was last modified.
remove.thumbnailRemove the thumbnail image.
remove.notesRemove the (presenter) notes.
remove.comments.modernRemove the modern (2018 spec) comments.
remove.comments.legacyRemove the legacy (2006spec) comments.
remove.authorsRemove the list of authors.
remove.viewRemove the view settings.
1.0.3

7 months ago

1.0.2

9 months ago

1.0.1

10 months ago

1.0.0

10 months ago

0.0.22

10 months ago

0.0.21

10 months ago

0.0.20

10 months ago

0.0.19

10 months ago

0.0.18

10 months ago

0.0.17

10 months ago

0.0.16

10 months ago

0.0.15

10 months ago

0.0.14

10 months ago

0.0.13

10 months ago

0.0.12

10 months ago

0.0.11

10 months ago

0.0.10

10 months ago

0.0.9

10 months ago

0.0.8

10 months ago

0.0.7

10 months ago

0.0.6

10 months ago

0.0.5

11 months ago

0.0.4

11 months ago

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago

0.0.0

11 months ago