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
1 change: 1 addition & 0 deletions news/changelog-1.9.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ All changes included in 1.9:
- ([#13616](https://github.com/quarto-dev/quarto-cli/issues/13616)): Fix fatal error when rendering manuscript projects with custom blocks like ConditionalBlock.
- ([#13625](https://github.com/quarto-dev/quarto-cli/issues/13625)): Fix Windows file locking error (os error 32) when rendering with `--output-dir` flag. Context cleanup now happens before removing the temporary `.quarto` directory, ensuring file handles are properly closed.
- ([#13633](https://github.com/quarto-dev/quarto-cli/issues/13633)): Fix detection and auto-installation of babel language packages from newer error format that doesn't explicitly mention `.ldf` filename.
- ([#13694](https://github.com/quarto-dev/quarto-cli/issues/13694)): Fix `notebook-view.url` being ignored - external notebook links now properly use specified URLs instead of local preview files.

## Dependencies

Expand Down
2 changes: 1 addition & 1 deletion src/format/html/format-html-notebook-preview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ export const notebookPreviewer = (
// to form links to this notebook
const nbPreview = {
title: resolvedTitle,
href: relative(inputDir, renderedNotebook[kHtmlPreview].hrefPath),
href: descriptor?.url || relative(inputDir, renderedNotebook[kHtmlPreview].hrefPath),
supporting,
resources,
order: work.order,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ _quarto:
tests:
html:
ensureHtmlElements:
- ['a.quarto-notebook-link']
- ['a.quarto-notebook-link[href*="kaggle.com"]']
- ['div.quarto-alternate-notebooks a']
ensureFileRegexMatches:
- ['Source: TEST NB']
Expand Down
Loading