Skip to content

Commit

Permalink
Add a changelog entry and new test case.
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHatherly committed Feb 21, 2025
1 parent 1971bd5 commit 7ba0fd4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions news/changelog-1.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,4 @@ All changes included in 1.7:
- ([#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.
- ([#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.
- ([#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.
- ([#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.
18 changes: 18 additions & 0 deletions tests/docs/smoke-all/2025/02/21/12132.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
engine: julia
format: html
_quarto:
tests:
html:
ensureHtmlElements:
- ["div.cell-output-stdout div.ansi-escaped-output pre span.ansi-red-fg.ansi-bold"]
- ["div.cell-output-stdout div.ansi-escaped-output pre span.ansi-red-cyan-bold"]
---

```{julia}
printstyled("red"; color = :red, bold = true)
```

```{julia}
@info "logging"
```

0 comments on commit 7ba0fd4

Please sign in to comment.