Skip to content

Commit 58abe9c

Browse files
authored
Merge branch 'prerelease' into highlightsv1.6
2 parents f82c3e4 + 771e977 commit 58abe9c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+1264
-138
lines changed

_freeze/site_libs/quarto-listing/quarto-listing.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ const kProgressiveAttr = "data-src";
22
let categoriesLoaded = false;
33

44
window.quartoListingCategory = (category) => {
5+
category = atob(category);
56
if (categoriesLoaded) {
67
activateCategory(category);
78
setCategoryHash(category);
@@ -58,7 +59,7 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
5859
);
5960

6061
for (const categoryEl of categoryEls) {
61-
const category = categoryEl.getAttribute("data-category");
62+
const category = atob(categoryEl.getAttribute("data-category"));
6263
categoryEl.onclick = () => {
6364
activateCategory(category);
6465
setCategoryHash(category);
@@ -208,7 +209,7 @@ function activateCategory(category) {
208209

209210
// Activate this category
210211
const categoryEl = window.document.querySelector(
211-
`.quarto-listing-category .category[data-category='${category}'`
212+
`.quarto-listing-category .category[data-category='${btoa(category)}']`
212213
);
213214
if (categoryEl) {
214215
categoryEl.classList.add("active");
@@ -231,7 +232,7 @@ function filterListingCategory(category) {
231232
list.filter(function (item) {
232233
const itemValues = item.values();
233234
if (itemValues.categories !== null) {
234-
const categories = itemValues.categories.split(",");
235+
const categories = atob(itemValues.categories).split(",");
235236
return categories.includes(category);
236237
} else {
237238
return false;

_quarto.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,15 @@ website:
129129
href: docs/authoring/placeholder.qmd
130130
- text: "Lorem Lipsum Text"
131131
href: docs/authoring/lipsum.qmd
132+
- text: "Rearrange Contents"
133+
href: docs/authoring/contents.qmd
132134
- docs/authoring/videos.qmd
133135
- text: "Embeds"
134136
href: docs/authoring/notebook-embed.qmd
135137
- docs/authoring/callouts.qmd
136138
- docs/authoring/code-annotation.qmd
139+
- text: "Brand"
140+
href: docs/authoring/brand.qmd
137141
- docs/authoring/article-layout.qmd
138142
- section: "Scholarly Writing"
139143
contents:
@@ -575,6 +579,8 @@ website:
575579
href: docs/reference/metadata/citation.qmd
576580
- text: "Cross-References"
577581
href: docs/reference/metadata/crossref.qmd
582+
- text: "Brand"
583+
href: docs/reference/metadata/brand.qmd
578584
- id: prerelease
579585
title: "Quarto 1.3"
580586
contents:

docs/advanced/environment-vars.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ You can read about other ways to set environment variables in Quarto Projects in
1818

1919
| Variable | Description |
2020
|-----------------|-------------|
21-
| `QUARTO_R` | |
22-
| `QUARTO_PYTHON` | |
23-
| | |
21+
| `QUARTO_R` | Explicit path to the version of `Rscript` to be used by the `knitr` engine and `quarto run *.R` command. |
22+
| `QUARTO_PYTHON` | Explicit path to the version of `python` to be used by the `jupyter` engine and `quarto run *.py` command. |
23+
| `QUARTO_VERSION_REQUIREMENT` | A [`semver`](https://semver.org/) string describing the Quarto version requested by the environment. If this check fails, Quarto will not run. |
2424

2525
## Variables Quarto sets
2626

docs/authoring/_shortcodes.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ Quarto supports several shortcodes natively:
2424
| [embed](/docs/authoring/notebook-embed.qmd) | Embed cells from a Jupyter Notebook |
2525
| [placeholder](/docs/authoring/placeholder.qmd) | Add placeholder images to your document |
2626
| [lipsum](/docs/authoring/lipsum.qmd) | Add placeholder text to your document |
27-
| [contents](/docs/authors/contents.qmd) | Rearrange content in your document |
27+
| [contents](/docs/authoring/contents.qmd) | Rearrange content in your document |

0 commit comments

Comments
 (0)