class documentation
class _GenericDocumentOutput: (source)
Known subclasses: buhtzology.report.DocxDocument, buhtzology.report.MarkdownDocument, buhtzology.report.XlsxDocument
Constructor: _GenericDocumentOutput(file_path, tags_allowed, tags_excluded)
Base class for the different output file types.
| Method | __init__ |
Undocumented |
| Method | show |
Open the document with the associated application. |
| Instance Variable | file |
Path to the file. |
| Instance Variable | tags |
List of tags for elements that are allowed. |
| Instance Variable | tags |
List of tags for elements that are excluded. |
| Method | _not |
Handle not implemented elements and throws a warning. |
def __init__(self, file_path:
pathlib.Path, tags_allowed: list[ str] | str = None, tags_excluded: list[ str] | str = None):
(source)
¶
overridden in
buhtzology.report.DocxDocument, buhtzology.report.MarkdownDocument, buhtzology.report.XlsxDocumentUndocumented