Skip to content
Closed
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.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ All changes included in 1.7:

### `website`

- ([#5600](https://github.com/quarto-dev/quarto-cli/issues/5600)): Allow existing-but-empty `_metadata.yml` file in projects.
- ([#8238](https://github.com/quarto-dev/quarto-cli/issues/8238)): Listing categories are now sorted case-insensitively.
- ([#10501](https://github.com/quarto-dev/quarto-cli/issues/10501)): Improve documentation of `repo-actions` option.
- ([#11701](https://github.com/quarto-dev/quarto-cli/issues/11701)): Wrap HTML emitted by EJS templates in `{=html}` blocks to avoid memory blowup issues with Pandoc's parser.
Expand Down
3 changes: 2 additions & 1 deletion src/project/project-shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ export async function directoryMetadataForInputFile(
file,
frontMatterSchema,
errMsg,
"{}",
)) || {}) as Record<string, unknown>;

// resolve format into expected structure
Expand Down Expand Up @@ -611,7 +612,7 @@ export async function projectResolveBrand(
}
if (typeof brand.dark === "string") {
dark = await loadRelativeBrand(brand.dark);
} else if(brand.dark) {
} else if (brand.dark) {
dark = new Brand(
brand.dark,
dirname(fileName),
Expand Down
Empty file.
Empty file.
Empty file.
Loading