OpenXML Filter: align text exclusion parameters for different document types
Related issues: #1433 (closed), #1434 and #1435.
It is tempting to split the parameters by filter configuration names (okf_docx, okf_pptx, okf_xlsx, etc.), but it would require a lot of effort. So, the scope might be:
For styles:
excludeOrIncludeWordTextStyleNames.b=true
wordTextStyleNames.0.pattern=Test Style
wordTextStyleNames.number.i=1
excludeOrIncludePowerpointTextWithStyleNames.b=true
powerpointTextStyleNames.0.pattern=Test Style
powerpointTextStyleNames.number.i=1
excludeOrIncludeExcelTextWithStyleNames.b=true
excelTextStyleNames.0.pattern=Test Style
excelTextStyleNames.number.i=1
For highlight colors:
excludeOrIncludeWordTextHighlightColors.b=true
wordTextHighlightColors.0.name=Red
wordTextHighlightColors.number=1
excludeOrIncludePowerpointTextWithHighlightColors.b=true
powerpointTextHighlightColors.0.name=Red
powerpointTextHighlightColors.number=1
excludeOrIncludeExcelTextHighlightColors.b=true
excelTextHighlightColors.0.name=Red
excelTextHighlightColors.number=1
For font colors:
excludeOrIncludeWordTextFontColors.b=true
wordTextFontColors.0.name=Red
wordTextFontColors.number.i=1
excludeOrIncludePowerpointTextFontColors.b=true
powerpointTextFontColors.0.name=Red
powerpointTextFontColors.number=1
excludeOrIncludeExcelTextFontColors.b=true
excelTextFontColors.0.name=Red
excelTextFontColors.number=1
UI: to find out what would suite best

