File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff 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' :
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments