Skip to content

Commit 89ced96

Browse files
authored
Merge pull request #32 from singerla/feature-modify-presentation
Merge from modify presentation branch
2 parents ff6b963 + b8dfa25 commit 89ced96

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/automizer.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,10 @@ export default class Automizer implements IPresentationProps {
339339
return this.templateDir + location;
340340
} else if (fs.existsSync(this.templateFallbackDir + location)) {
341341
return this.templateFallbackDir + location;
342+
} else {
343+
vd('No file matches "' + location + '"');
344+
vd('@templateDir: ' + this.templateDir);
345+
vd('@templateFallbackDir: ' + this.templateFallbackDir);
342346
}
343347
break;
344348
case 'output':

src/classes/slide.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export class Slide implements ISlide {
102102
* List of unsupported tags in slide xml
103103
* @internal
104104
*/
105-
unsupportedTags = ['p:custDataLst', 'mc:AlternateContent'];
105+
unsupportedTags = ['p:custDataLst', 'mc:AlternateContent', 'a14:imgProps'];
106106

107107
constructor(params: {
108108
presentation: IPresentationProps;

0 commit comments

Comments
 (0)