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.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
- ([#12780](https://github.com/quarto-dev/quarto-cli/issues/12780)): `keep-ipynb: true` now works again correctly and intermediate `.quarto_ipynb` is not removed.
- ([#13051](https://github.com/quarto-dev/quarto-cli/issues/13051)): Fixed support for captioned Markdown table inside Div syntax for crossref. This is special handling, but this could be output by function like `knitr::kable()` with old option support.
- ([#13441](https://github.com/quarto-dev/quarto-cli/pull/13441)): Catch `undefined` exceptions in Pandoc failure to avoid spurious error message.
- ([#13456](https://github.com/quarto-dev/quarto-cli/pull/13456)): Ensure that the `axe` YAML completion only appears in HTML formats.

## Backwards-compatibility breaking changes

Expand Down
5 changes: 5 additions & 0 deletions src/resources/editor/tools/vs-code.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24992,6 +24992,11 @@ var require_yaml_intelligence_resources = __commonJS({
"schema/document-a11y.yml": [
{
name: "axe",
tags: {
formats: [
"$html-files"
]
},
schema: {
anyOf: [
"boolean",
Expand Down

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions src/resources/editor/tools/yaml/web-worker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -17964,6 +17964,11 @@
"schema/document-a11y.yml": [
{
"name": "axe",
"tags": {
"formats": [
"$html-files"
]
},
"schema": {
"anyOf": [
"boolean",
Expand Down
2 changes: 2 additions & 0 deletions src/resources/schema/document-a11y.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
- name: axe
tags:
formats: [$html-files]
schema:
anyOf:
- boolean
Expand Down
Loading