You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix GFM callout rendering crash with empty content (#13603)
The GFM callout renderer would crash with internal_error() when
rendering callouts that had a title but no body content, because
it didn't handle the case where callout.content is nil.
This fix applies the same nil-safe pattern used by other format
renderers (EPUB, RevealJS): default to empty Blocks when content
is nil.
Copy file name to clipboardExpand all lines: news/changelog-1.9.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@ All changes included in 1.9:
17
17
### `gfm`
18
18
19
19
- ([#13421](https://github.com/quarto-dev/quarto-cli/issues/13421)): Do not word-wrap titles in header.
20
+
- ([#13603](https://github.com/quarto-dev/quarto-cli/issues/13603)): Fix callouts with title but no body content causing fatal error when rendering to GitHub Flavored Markdown.
0 commit comments