Skip to content

Commit 4961d39

Browse files
committed
improved detection/exclusion of spurious matplotlib plain text output
1 parent 464285f commit 4961d39

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

news/changelog-1.4.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@
109109
- ([#6344](https://github.com/quarto-dev/quarto-cli/issues/6344)): Somewhat improve the error message in case of YAML parsing errors in metadata of Python code cells.
110110
- ([#6367](https://github.com/quarto-dev/quarto-cli/issues/6367)): Fix bug with nested code cells in the generation of Jupyter notebook from .qmd files.
111111
- ([#6393](https://github.com/quarto-dev/quarto-cli/pull/6393)): Search `JULIA_HOME` for Julia-specific Python installations.
112+
- Improved detection/exclusion of spurious matplotlib plain text output
112113

113114
## OJS engine
114115

src/core/jupyter/jupyter.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1617,6 +1617,7 @@ function isDiscadableTextExecuteResult(output: JupyterOutput) {
16171617
if (textPlain && textPlain.length) {
16181618
return [
16191619
"[<matplotlib",
1620+
"<matplotlib",
16201621
"<seaborn.",
16211622
"<ggplot:",
16221623
].some((startsWith) => textPlain[0].startsWith(startsWith));

0 commit comments

Comments
 (0)