Skip to content

Commit 9d75330

Browse files
committed
improve repo-actions documentation. Closes #10501
1 parent 7068c4b commit 9d75330

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

news/changelog-1.7.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,20 @@ All changes included in 1.7:
2525
- ([#11654](https://github.com/quarto-dev/quarto-cli/issues/11654)): Allow `page-inset` as value in `column` key for code cells.
2626
- ([#12151](https://github.com/quarto-dev/quarto-cli/issues/12151)): Fix YAML validation in computations cell on Windows. Validate YAML in documents in `julia` engine.
2727

28-
## Website projects
28+
## Projects
29+
30+
### `website`
2931

3032
- ([#8238](https://github.com/quarto-dev/quarto-cli/issues/8238)): Listing categories are now sorted case-insensitively.
33+
- ([#10501](https://github.com/quarto-dev/quarto-cli/issues/10501)): Improve documentation of `repo-actions` option.
3134
- ([#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.
3235
- ([#12134](https://github.com/quarto-dev/quarto-cli/issues/12134)): Forward `logo.small` images in `_brand.yml` files to a website `favicon`.
3336

34-
## Blog projects
37+
### `blog`
3538

3639
- ([#11745](https://github.com/quarto-dev/quarto-cli/issues/11745)): Fix categories links under post title in post with url encoded path (e.g. with space or other special characters).
3740

38-
## Book projects
41+
### `book`
3942

4043
- ([#11520](https://github.com/quarto-dev/quarto-cli/issues/11520)): Book's cover image now escapes lightbox treatment, which was incorrectly applied to it when `lightbox: true` was set in the book's configuration.
4144
- ([#12134](https://github.com/quarto-dev/quarto-cli/issues/12134)): Forward `logo.small` images in `_brand.yml` files to the `favicon` of the book's website.

src/resources/editor/tools/vs-code.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19418,7 +19418,7 @@ var require_yaml_intelligence_resources = __commonJS({
1941819418
"$html-doc"
1941919419
]
1942019420
},
19421-
description: "Setting this to false prevents the `repo-actions` from appearing on this page."
19421+
description: "Setting this to false prevents the `repo-actions` from appearing on this page.\nOther possible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.\n"
1942219422
},
1942319423
{
1942419424
name: "aliases",
@@ -22858,7 +22858,7 @@ var require_yaml_intelligence_resources = __commonJS({
2285822858
"Open external links in a new browser window or tab (rather than\nnavigating the current tab).",
2285922859
{
2286022860
short: "A regular expression that can be used to determine whether a link is\nan internal link.",
22861-
long: "A regular expression that can be used to determine whether a link is\nan internal link. For example, the following will treat links that start\nwith http://www.quarto.org as internal links (and others will be\nconsidered external):"
22861+
long: "A regular expression that can be used to determine whether a link is\nan internal link. For example, the following will treat links that start\nwith <code>http://www.quarto.org/custom</code> or\n<code>https://www.quarto.org/custom</code> as internal links (and others\nwill be considered external):"
2286222862
},
2286322863
{
2286422864
short: "Controls whether links to other rendered formats are displayed in\nHTML output.",

src/resources/editor/tools/yaml/web-worker.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/resources/editor/tools/yaml/yaml-intelligence-resources.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12390,7 +12390,7 @@
1239012390
"$html-doc"
1239112391
]
1239212392
},
12393-
"description": "Setting this to false prevents the `repo-actions` from appearing on this page."
12393+
"description": "Setting this to false prevents the `repo-actions` from appearing on this page.\nOther possible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.\n"
1239412394
},
1239512395
{
1239612396
"name": "aliases",
@@ -15830,7 +15830,7 @@
1583015830
"Open external links in a new browser window or tab (rather than\nnavigating the current tab).",
1583115831
{
1583215832
"short": "A regular expression that can be used to determine whether a link is\nan internal link.",
15833-
"long": "A regular expression that can be used to determine whether a link is\nan internal link. For example, the following will treat links that start\nwith http://www.quarto.org as internal links (and others will be\nconsidered external):"
15833+
"long": "A regular expression that can be used to determine whether a link is\nan internal link. For example, the following will treat links that start\nwith <code>http://www.quarto.org/custom</code> or\n<code>https://www.quarto.org/custom</code> as internal links (and others\nwill be considered external):"
1583415834
},
1583515835
{
1583615836
"short": "Controls whether links to other rendered formats are displayed in\nHTML output.",

src/resources/schema/document-website.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717

1818
tags:
1919
formats: [$html-doc]
20-
description: Setting this to false prevents the `repo-actions` from appearing on this page.
20+
description: |
21+
Setting this to false prevents the `repo-actions` from appearing on this page.
22+
Other possible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.
2123
2224
- name: aliases
2325
schema:

0 commit comments

Comments
 (0)