Skip to content
Closed
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 @@ -22,6 +22,7 @@ All changes included in 1.7:
## Website projects

- ([#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.
- ([#10501](https://github.com/quarto-dev/quarto-cli/issues/10501)): add possible option to `repo-actions` option.
- ([#12134](https://github.com/quarto-dev/quarto-cli/issues/12134)): Forward `logo.small` images in `_brand.yml` files to a website `favicon`.

## Blog projects
Expand Down
4 changes: 2 additions & 2 deletions src/resources/editor/tools/vs-code.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19346,7 +19346,7 @@ var require_yaml_intelligence_resources = __commonJS({
"$html-doc"
]
},
description: "Setting this to false prevents the `repo-actions` from appearing on this page."
description: "Setting this to false prevents the `repo-actions` from appearing on this page.\nPossible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.\n"
},
{
name: "aliases",
Expand Down Expand Up @@ -23251,7 +23251,7 @@ var require_yaml_intelligence_resources = __commonJS({
"Print a list of figures in the document.",
"Print a list of tables in the document.",
"Setting this to false prevents this document from being included in\nsearches.",
"Setting this to false prevents the <code>repo-actions</code> from\nappearing on this page.",
"Setting this to false prevents the <code>repo-actions</code> from\nappearing on this page. Possible values are <code>none</code> or one or\nmore of <code>edit</code>, <code>source</code>, and <code>issue</code>,\n<em>e.g.</em> <code>[edit, source, issue]</code>.",
{
short: "Links to source repository actions",
long: "Links to source repository actions (<code>none</code> or one or more\nof <code>edit</code>, <code>source</code>, <code>issue</code>)"
Expand Down
4 changes: 2 additions & 2 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 @@ -12318,7 +12318,7 @@
"$html-doc"
]
},
"description": "Setting this to false prevents the `repo-actions` from appearing on this page."
"description": "Setting this to false prevents the `repo-actions` from appearing on this page.\nPossible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.\n"
},
{
"name": "aliases",
Expand Down Expand Up @@ -16223,7 +16223,7 @@
"Print a list of figures in the document.",
"Print a list of tables in the document.",
"Setting this to false prevents this document from being included in\nsearches.",
"Setting this to false prevents the <code>repo-actions</code> from\nappearing on this page.",
"Setting this to false prevents the <code>repo-actions</code> from\nappearing on this page. Possible values are <code>none</code> or one or\nmore of <code>edit</code>, <code>source</code>, and <code>issue</code>,\n<em>e.g.</em> <code>[edit, source, issue]</code>.",
{
"short": "Links to source repository actions",
"long": "Links to source repository actions (<code>none</code> or one or more\nof <code>edit</code>, <code>source</code>, <code>issue</code>)"
Expand Down
5 changes: 3 additions & 2 deletions src/resources/schema/document-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@
description:
short: "Links to source repository actions"
long: "Links to source repository actions (`none` or one or more of `edit`, `source`, `issue`)"

tags:
formats: [$html-doc]
description: Setting this to false prevents the `repo-actions` from appearing on this page.
description: |
Setting this to false prevents the `repo-actions` from appearing on this page.
Possible values are `none` or one or more of `edit`, `source`, and `issue`, *e.g.* `[edit, source, issue]`.

- name: aliases
schema:
Expand Down
Loading