Skip to content

Commit 9bb92a4

Browse files
committed
regenerate CLI reference from v1.9.37
Replace manual edits with output from reference-cli-generate-md.R using quarto v1.9.37 cli-info. The v1.9 CLI source uses "legacy" in example headings (not "deprecated") — the deprecated label is only in the runtime warning, not the CLI metadata.
1 parent 446abd2 commit 9bb92a4

5 files changed

Lines changed: 11 additions & 15 deletions

File tree

docs/cli/cli-info.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.9.36",
2+
"version": "1.9.37",
33
"commands": [
44
{
55
"name": "render",
@@ -361,7 +361,7 @@
361361
{
362362
"name": "preview",
363363
"hidden": false,
364-
"description": "Render and preview a document or website project.\n\nAutomatically reloads the browser when input files or document resources (e.g. CSS) change.\n\nFor website preview, the most recent execution results of computational documents are used to render\nthe site (this is to optimize startup time). If you want to perform a full render prior to\npreviewing pass the --render option with \"all\" or a comma-separated list of formats to render.\n\nFor document preview, input file changes will result in a re-render (pass --no-watch to prevent).\n\nYou can also include arbitrary command line arguments to be forwarded to \u001b[1mquarto render\u001b[22m.",
364+
"description": "Render and preview a document or website project.\n\nAutomatically reloads the browser when input files or document resources (e.g. CSS) change.\n\nFor website preview, the most recent execution results of computational documents are used to render\nthe site (this is to optimize startup time). If you want to perform a full render prior to\npreviewing pass the --render option with \"all\" or a comma-separated list of formats to render.\n\nFor document preview, input file changes will result in a re-render (pass --no-watch to prevent).\n\nYou can also include arbitrary command line arguments to be forwarded to quarto render.",
365365
"options": [
366366
{
367367
"standalone": true,

docs/cli/includes/_cli-commands.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
|[create](create.qmd)|Create a Quarto project or extension |
77
|[use](use.qmd)|Automate document or project setup tasks. |
88
|[add](add.qmd)|Add an extension to this folder or project |
9-
|[update](update.qmd)|Updates an extension or global dependency (TinyTeX, Chrome Headless Shell, Chromium (deprecated), VeraPDF). |
9+
|[update](update.qmd)|Updates an extension or global dependency (TinyTeX, Chromium, Chrome Headless Shell, VeraPDF). |
1010
|[remove](remove.qmd)|Removes an extension. |
1111
|[convert](convert.qmd)|Convert documents to alternate representations. |
1212
|[pandoc](pandoc.qmd)|Run the version of Pandoc embedded within Quarto. |
1313
|[typst](typst.qmd)|Run the version of Typst embedded within Quarto. |
1414
|[run](run.qmd)|Run a TypeScript, R, Python, or Lua script. |
1515
|[list](list.qmd)|Lists an extension or global dependency. |
16-
|[install](install.qmd)|Installs a global dependency (TinyTeX, Chrome Headless Shell, Chromium (deprecated), VeraPDF). |
17-
|[uninstall](uninstall.qmd)|Uninstalls a global dependency (TinyTeX, Chrome Headless Shell, Chromium (deprecated), VeraPDF). |
16+
|[install](install.qmd)|Installs a global dependency (TinyTeX, Chromium, Chrome Headless Shell, VeraPDF). |
17+
|[uninstall](uninstall.qmd)|Uninstalls a global dependency (TinyTeX, Chromium, Chrome Headless Shell, VeraPDF). |
1818
|[tools](tools.qmd)|Display the status of Quarto installed dependencies |
1919
|[publish](publish.qmd)|Publish a document or project to a provider. |
2020
|[capabilities](capabilities.qmd)|Query for current capabilities (formats, engines, kernels etc.) |

docs/cli/includes/_install.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Installs a global dependency (TinyTeX, Chrome Headless Shell, Chromium (deprecated), VeraPDF).
1+
Installs a global dependency (TinyTeX, Chromium, Chrome Headless Shell, VeraPDF).
22

33
``` {.bash}
44
quarto install [target...]
@@ -99,14 +99,12 @@ quarto install tinytex
9999
quarto install chrome-headless-shell
100100
```
101101

102-
### Install Chromium (deprecated)
102+
### Install Chromium (legacy)
103103

104104
``` {.bash filename='Terminal'}
105105
quarto install chromium
106106
```
107107

108-
Deprecated as of Quarto 1.9. Use `quarto install chrome-headless-shell` instead.
109-
110108
### Choose tool to install
111109

112110
``` {.bash filename='Terminal'}

docs/cli/includes/_uninstall.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Uninstalls a global dependency (TinyTeX, Chrome Headless Shell, Chromium (deprecated), VeraPDF).
1+
Uninstalls a global dependency (TinyTeX, Chromium, Chrome Headless Shell, VeraPDF).
22

33
``` {.bash}
44
quarto uninstall [tool]
@@ -99,7 +99,7 @@ quarto uninstall tinytex
9999
quarto uninstall chrome-headless-shell
100100
```
101101

102-
### Uninstall Chromium (deprecated)
102+
### Uninstall Chromium (legacy)
103103

104104
``` {.bash filename='Terminal'}
105105
quarto uninstall chromium

docs/cli/includes/_update.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Updates an extension or global dependency (TinyTeX, Chrome Headless Shell, Chromium (deprecated), VeraPDF).
1+
Updates an extension or global dependency (TinyTeX, Chromium, Chrome Headless Shell, VeraPDF).
22

33
``` {.bash}
44
quarto update [target...]
@@ -117,14 +117,12 @@ quarto update tool tinytex
117117
quarto update tool chrome-headless-shell
118118
```
119119

120-
### Update Chromium (deprecated)
120+
### Update Chromium (legacy)
121121

122122
``` {.bash filename='Terminal'}
123123
quarto update tool chromium
124124
```
125125

126-
Deprecated as of Quarto 1.9. Use `quarto update tool chrome-headless-shell` instead.
127-
128126
### Choose tool to update
129127

130128
``` {.bash filename='Terminal'}

0 commit comments

Comments
 (0)