Skip to content

Commit 7ba0fd4

Browse files
Add a changelog entry and new test case.
1 parent 1971bd5 commit 7ba0fd4

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

news/changelog-1.7.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,4 @@ All changes included in 1.7:
8181
- ([#10532](https://github.com/quarto-dev/quarto-cli/issues/10532)): Quarto changed default of `--headless=old` to `--headless` as [Chrome 132 has removed old headless mode](https://developer.chrome.com/blog/removing-headless-old-from-chrome) and only support new mode. For using old mode, `QUARTO_CHROMIUM` could be set to a [new `chrome-headless-shell` binary](https://developer.chrome.com/blog/chrome-headless-shell) or too an older chrome version (between 128 and 132) and `QUARTO_CHROMIUM_HEADLESS_MODE` set to `old` for using old headless mode with that compatabitle version.
8282
- ([#10961](https://github.com/quarto-dev/quarto-cli/issues/10961)): Add more information on which Chrome Headless will be used in `quarto check install`. This is helpful to help debug mermaid issues.
8383
- ([#11951](https://github.com/quarto-dev/quarto-cli/issues/11951)): Raw LaTeX table without `tbl-` prefix label for using Quarto crossref are now correctly passed through unmodified.
84+
- ([#12117](https://github.com/quarto-dev/quarto-cli/issues/12117)): Color output to stdout and stderr is now correctly rendered for `html` format in the Jupyter and Julia engines.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
engine: julia
3+
format: html
4+
_quarto:
5+
tests:
6+
html:
7+
ensureHtmlElements:
8+
- ["div.cell-output-stdout div.ansi-escaped-output pre span.ansi-red-fg.ansi-bold"]
9+
- ["div.cell-output-stdout div.ansi-escaped-output pre span.ansi-red-cyan-bold"]
10+
---
11+
12+
```{julia}
13+
printstyled("red"; color = :red, bold = true)
14+
```
15+
16+
```{julia}
17+
@info "logging"
18+
```

0 commit comments

Comments
 (0)