Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions news/changelog-1.9.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ All changes included in 1.9:

## Formats

### `gfm`

- ([#13421](https://github.com/quarto-dev/quarto-cli/issues/13421)): Do not word-wrap titles in header.

### `html`

- ([#13413](https://github.com/quarto-dev/quarto-cli/issues/13413)): Fix uncentered play button in `video` shortcodes from cross-reference divs. (author: @bruvellu)
Expand Down
2 changes: 1 addition & 1 deletion src/resources/pandoc/templates/default.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$if(title)$
# $title$
# $title/nowrap$
$endif$
$for(by-author)$$it.name.literal$$sep$, $endfor$
$if(date)$
Expand Down
12 changes: 12 additions & 0 deletions tests/docs/smoke-all/2025/09/26/issue-13421.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
format: gfm
title: "0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789 0123456789"
_quarto:
tests:
gfm:
ensureFileRegexMatches:
- []
- ["\n012345"]
---

Do not wrap.
Loading