Skip to content

Commit c62c0ef

Browse files
committed
merge main -> prerelease
2 parents f5da237 + 9b6061b commit c62c0ef

File tree

10 files changed

+407
-82
lines changed

10 files changed

+407
-82
lines changed

.well-known/atproto-did

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
did:plc:yvu4igag5eha3sbbbx7poz2p

_quarto.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ project:
66
- "/docs/download/_prerelease.json"
77
- "/_redirects"
88
- "/docs/blog/posts/2024-07-02-beautiful-tables-in-typst/demo"
9+
- "/.well-known/atproto-did"
910

1011
website:
1112
title: "Quarto"
@@ -24,7 +25,7 @@ website:
2425
show-item-context: true
2526
type: overlay
2627
algolia:
27-
index-name: prerelease_QUARTO
28+
index-name: prod_QUARTO
2829
application-id: ZPJB5I1QN7
2930
search-only-api-key: 41be6c1e0a7fea4a51b107810facf577
3031
analytics-events: true

style-guide.md renamed to _style-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
* Prefer absolute paths from the root of the project over relative paths involving `../`. E.g. use `/docs/output-formats/html-themes.qmd`, not `../output-formats/html-themes.qmd`.
77
* Possible exception: documents in a subfolder of a section that link to the section root, e.g. you may use `../index.qmd` to refer to `docs/manuscripts/index.qmd` from `docs/manuscripts/authoring/index.qmd`.
88
* Use `.qmd` instead of `.html`. E.g. use `content.qmd#editing-tables`, not `content.html#editing-tables`
9-
* Possible exception: links in blog posts
9+
* Possible exception: links in blog posts

docs/blog/posts/2024-xx-xx-1.6-release/_contribs.md

Whitespace-only changes.
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
title: Quarto 1.6
3+
description: |
4+
Quarto 1.6 ...
5+
categories:
6+
- Quarto 1.6
7+
- Releases
8+
author: Charlotte Wickham
9+
date: "xx/xx/2024"
10+
draft: true
11+
# image:
12+
# image-alt:
13+
---
14+
15+
Quarto 1.6 has been officially released! You can get the current release from the [download page](/docs/download/index.qmd)
16+
17+
## Crossrefs
18+
19+
It should now be easier to get Quarto to recognize subfloats (subtables, subfigures, etc) when they're emitted by code cells.
20+
If the `subcap` attribute of a code cell has as many entries as the number of outputs from your code cell, Quarto knows to accept those as subfloats.
21+
See [#10328](https://github.com/quarto-dev/quarto-cli/issues/10328) for details.
22+
23+
Minimal example:
24+
25+
````
26+
```{{r}}
27+
#| label: tbl-example
28+
#| tbl-cap: I want these images to be interpreted as Tables.
29+
#| tbl-subcap:
30+
#| - This is the subcaption for the first subtable
31+
#| - This is the subcaption for the second subtable
32+
plot(1:10)
33+
plot(11:20)
34+
```
35+
````
36+
37+
![The result of executing the above code cell in HTML format](./subcells-and-subfloats.png)
38+
39+
## Acknowledgements
40+
41+
We'd like to say a huge thank you to everyone who contributed to this release by opening issues and pull requests:
42+
43+
{{< include _contribs.md >}}
105 KB
Loading

docs/download/changelog/1.5/_changelog.md

Lines changed: 274 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: 1.5 Release Notes
3+
format: html
4+
---
5+
6+
{{< include _changelog.md >}}

docs/websites/website-search.qmd

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -182,12 +182,12 @@ website:
182182
index-name: <my-index-name>
183183
application-id: <my-application-id>
184184
search-only-api-key: <my-search-only-api-key>
185-
index-fields:
186-
href: url
187-
section: sec
188-
text: body
189-
params:
190-
tagFilters: ['tag1','tag2']
185+
index-fields:
186+
href: url
187+
section: sec
188+
text: body
189+
params:
190+
tagFilters: ['tag1','tag2']
191191
```
192192

193193
## Disabling/Forcing Search

0 commit comments

Comments
 (0)