From 66afce830def1e4095a9b4f5f900475398b98787 Mon Sep 17 00:00:00 2001 From: Matthias Geier Date: Sun, 28 Apr 2024 12:28:14 +0200 Subject: [PATCH] rst exporter: Re-enable coalescing streams --- nbconvert/exporters/rst.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nbconvert/exporters/rst.py b/nbconvert/exporters/rst.py index 1763e6fb7..23061f14e 100644 --- a/nbconvert/exporters/rst.py +++ b/nbconvert/exporters/rst.py @@ -29,6 +29,7 @@ def _template_name_default(self): def default_config(self): c = Config( { + "CoalesceStreamsPreprocessor": {"enabled": True}, "ExtractOutputPreprocessor": {"enabled": True}, "HighlightMagicsPreprocessor": {"enabled": True}, }