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
6 changes: 5 additions & 1 deletion news/changelog-1.6.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,14 @@ All changes included in 1.6:

- ([#10616](https://github.com/quarto-dev/quarto-cli/issues/10268)): Add a `z-index` setting to the 'back to top' button to ensure it is always visible.

## Quarto Blog
### Quarto Blog

- ([#10710](https://github.com/quarto-dev/quarto-cli/issues/10710)): Fix an issue with categorie badges as links in the blog post header.

### Manuscript

- Fix an issue on Windows when creating MECA bundles containing special file name like space in the path ([quarto-ext/manuscript-template-rstudio#3](https://github.com/quarto-ext/manuscript-template-rstudio/issues/3)).

## Engines

### `julia`
Expand Down
2 changes: 1 addition & 1 deletion src/core/zip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function zip(
"PowerShell",
"Compress-Archive",
"-Path",
filesArr.join(", "),
filesArr.map((x) => `"${x}"`).join(", "),
"-DestinationPath",
archive,
"-Force",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Should be in bundle
2 changes: 2 additions & 0 deletions tests/docs/manuscript/qmd-single/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ citation:
draft: false
bibliography: references.bib
echo: false
resources:
- "dummy resource with space in name.txt"
---

## Introduction
Expand Down
1 change: 1 addition & 0 deletions tests/smoke/manuscript/render-manuscript.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ const qmdSingleOutputs = [
"images/reservoirs.png",
"index-preview.html",
"index.out.ipynb",
"dummy resource with space in name.txt"
];

testManuscriptRender(
Expand Down
Loading