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
8 changes: 4 additions & 4 deletions src/resources/editor/tools/vs-code.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7329,7 +7329,7 @@ var require_yaml_intelligence_resources = __commonJS({
default: true,
description: {
short: "Evaluate code cells (if `false` just echos the code into output).",
long: "Evaluate code cells (if `false` just echos the code into output).\n\n- `true` (default): evaluate code cell\n- `false`: don't evaluate code cell\n- `[...]`: A list of positive or negative line numbers to selectively include or exclude lines \n (explicit inclusion/excusion of lines is available only when using the knitr engine)\n"
long: "Evaluate code cells (if `false` just echos the code into output).\n\n- `true` (default): evaluate code cell\n- `false`: don't evaluate code cell\n- `[...]`: A list of positive or negative numbers to selectively include or exclude expressions \n (explicit inclusion/exclusion of expressions is available only when using the knitr engine)\n"
}
},
{
Expand Down Expand Up @@ -21138,7 +21138,7 @@ var require_yaml_intelligence_resources = __commonJS({
"Book part and chapter files",
"Book appendix files",
"Book references file",
"Base name for single-file output (e.g. PDF, ePub)",
"Base name for single-file output (e.g. PDF, ePub, docx)",
"Cover image (used in HTML and ePub formats)",
"Alternative text for cover image (used in HTML format)",
"Sharing buttons to include on navbar or sidebar (one or more of\n<code>twitter</code>, <code>facebook</code>, <code>linkedin</code>)",
Expand Down Expand Up @@ -23458,7 +23458,7 @@ var require_yaml_intelligence_resources = __commonJS({
"Book part and chapter files",
"Book appendix files",
"Book references file",
"Base name for single-file output (e.g.&nbsp;PDF, ePub)",
"Base name for single-file output (e.g.&nbsp;PDF, ePub, docx)",
"Cover image (used in HTML and ePub formats)",
"Alternative text for cover image (used in HTML format)",
"Sharing buttons to include on navbar or sidebar (one or more of\n<code>twitter</code>, <code>facebook</code>, <code>linkedin</code>)",
Expand Down Expand Up @@ -23810,7 +23810,7 @@ var require_yaml_intelligence_resources = __commonJS({
"Book part and chapter files",
"Book appendix files",
"Book references file",
"Base name for single-file output (e.g.&nbsp;PDF, ePub)",
"Base name for single-file output (e.g.&nbsp;PDF, ePub, docx)",
"Cover image (used in HTML and ePub formats)",
"Alternative text for cover image (used in HTML format)",
"Sharing buttons to include on navbar or sidebar (one or more of\n<code>twitter</code>, <code>facebook</code>, <code>linkedin</code>)",
Expand Down
8 changes: 4 additions & 4 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 @@ -301,7 +301,7 @@
"default": true,
"description": {
"short": "Evaluate code cells (if `false` just echos the code into output).",
"long": "Evaluate code cells (if `false` just echos the code into output).\n\n- `true` (default): evaluate code cell\n- `false`: don't evaluate code cell\n- `[...]`: A list of positive or negative line numbers to selectively include or exclude lines \n (explicit inclusion/excusion of lines is available only when using the knitr engine)\n"
"long": "Evaluate code cells (if `false` just echos the code into output).\n\n- `true` (default): evaluate code cell\n- `false`: don't evaluate code cell\n- `[...]`: A list of positive or negative numbers to selectively include or exclude expressions \n (explicit inclusion/exclusion of expressions is available only when using the knitr engine)\n"
}
},
{
Expand Down Expand Up @@ -14110,7 +14110,7 @@
"Book part and chapter files",
"Book appendix files",
"Book references file",
"Base name for single-file output (e.g.&nbsp;PDF, ePub)",
"Base name for single-file output (e.g.&nbsp;PDF, ePub, docx)",
"Cover image (used in HTML and ePub formats)",
"Alternative text for cover image (used in HTML format)",
"Sharing buttons to include on navbar or sidebar (one or more of\n<code>twitter</code>, <code>facebook</code>, <code>linkedin</code>)",
Expand Down Expand Up @@ -16430,7 +16430,7 @@
"Book part and chapter files",
"Book appendix files",
"Book references file",
"Base name for single-file output (e.g.&nbsp;PDF, ePub)",
"Base name for single-file output (e.g.&nbsp;PDF, ePub, docx)",
"Cover image (used in HTML and ePub formats)",
"Alternative text for cover image (used in HTML format)",
"Sharing buttons to include on navbar or sidebar (one or more of\n<code>twitter</code>, <code>facebook</code>, <code>linkedin</code>)",
Expand Down Expand Up @@ -16782,7 +16782,7 @@
"Book part and chapter files",
"Book appendix files",
"Book references file",
"Base name for single-file output (e.g.&nbsp;PDF, ePub)",
"Base name for single-file output (e.g.&nbsp;PDF, ePub, docx)",
"Cover image (used in HTML and ePub formats)",
"Alternative text for cover image (used in HTML format)",
"Sharing buttons to include on navbar or sidebar (one or more of\n<code>twitter</code>, <code>facebook</code>, <code>linkedin</code>)",
Expand Down
4 changes: 2 additions & 2 deletions src/resources/schema/cell-codeoutput.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

- `true` (default): evaluate code cell
- `false`: don't evaluate code cell
- `[...]`: A list of positive or negative line numbers to selectively include or exclude lines
(explicit inclusion/excusion of lines is available only when using the knitr engine)
- `[...]`: A list of positive or negative numbers to selectively include or exclude expressions
(explicit inclusion/exclusion of expressions is available only when using the knitr engine)

- name: echo
tags:
Expand Down
Loading