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.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ All changes included in 1.7:
- ([#12369](https://github.com/quarto-dev/quarto-cli/pull/12369)): `quarto preview` correctly throws a YAML validation error when a `format` key does not conform.
- ([#12238](https://gijit.com/quarto-dev/quarto-cli/issues/12238)): Very long error (e.g. in Jupyter Notenook with backtrace) are now no more truncated in the console.
- ([#9867](https://github.com/quarto-dev/quarto-cli/issues/9867)): Blank lines are now trimmed in Raw HTML Table blocks.
- ([#12459](https://github.com/quarto-dev/quarto-cli/pull/12459)): Add `.page-inset-*` classes to completions.

## Languages

Expand Down
6 changes: 6 additions & 0 deletions src/resources/editor/tools/attrs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,12 @@
doc: Extend content on the left to a wider region
- value: ".column-page-right"
doc: Extend content on the right to a wider region
- value: ".column-page-inset"
doc: Extend content to a wider region (with a small margin)
- value: ".column-page-inset-left"
doc: Extend content on the left to a wider region (with a small margin)
- value: ".column-page-inset-right"
doc: Extend content on the right to a wider region (with a small margin)
- value: ".column-screen-inset"
doc: Extend content to full width (with a small margin)
- value: ".column-screen-inset-shaded"
Expand Down
Loading