Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Commit

Permalink
Adds "w:" and "p:" prefixes to unlock tags for Word and Powerpoint re…
Browse files Browse the repository at this point in the history
…spectively
  • Loading branch information
petemc89 committed Oct 31, 2020
1 parent 9341cd8 commit 78848c8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ public MicrosoftPowerpoint(string filepath) : base(filepath)
{
PresentationTagNames = new List<string>()
{
"modifyVerifier"
"modifyVerifier",
"p:modifyVerifier"
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ public MicrosoftWord(string filepath) : base(filepath)
SettingsTagNames = new List<string>()
{
"writeProtection",
"documentProtection"
"documentProtection",
"w:writeProtection",
"w:documentProtection"
};
}

Expand Down

0 comments on commit 78848c8

Please sign in to comment.