Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/nbconvert/preprocessors/__init__.py: 94%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

17 statements  

1# Class base Preprocessors 

2# Backwards compatibility for imported name 

3from nbclient.exceptions import CellExecutionError 

4 

5from .base import Preprocessor 

6from .clearmetadata import ClearMetadataPreprocessor 

7from .clearoutput import ClearOutputPreprocessor 

8from .coalescestreams import CoalesceStreamsPreprocessor 

9from .convertfigures import ConvertFiguresPreprocessor 

10from .csshtmlheader import CSSHTMLHeaderPreprocessor 

11from .execute import ExecutePreprocessor 

12from .extractattachments import ExtractAttachmentsPreprocessor 

13from .extractoutput import ExtractOutputPreprocessor 

14from .highlightmagics import HighlightMagicsPreprocessor 

15from .latex import LatexPreprocessor 

16from .regexremove import RegexRemovePreprocessor 

17from .svg2pdf import SVG2PDFPreprocessor 

18from .tagremove import TagRemovePreprocessor 

19 

20__all__ = [ 

21 "CellExecutionError", 

22 "Preprocessor", 

23 "ClearMetadataPreprocessor", 

24 "ClearOutputPreprocessor", 

25 "CoalesceStreamsPreprocessor", 

26 "ConvertFiguresPreprocessor", 

27 "CSSHTMLHeaderPreprocessor", 

28 "ExecutePreprocessor", 

29 "ExtractAttachmentsPreprocessor", 

30 "ExtractOutputPreprocessor", 

31 "HighlightMagicsPreprocessor", 

32 "LatexPreprocessor", 

33 "RegexRemovePreprocessor", 

34 "SVG2PDFPreprocessor", 

35 "TagRemovePreprocessor", 

36]