quarto-marimo
marimo extension for Quarto ⚡ run reactive code inside Quarto
File Explorer
- bug_report.yaml
- config.yml
- feature_request.yaml
- ci.yml
- deploy.yml
- pre-commit.yml
- publish.yml
- pull_request_template.md
- __init__.py
- authoring.py
- cli.py
- compiler.py
- document.py
- protocol.py
- static.py
- command.py
- extract.py
- _extension.yml
- marimo-engine.js
- quarto-marimo-lockup-horizontal-dark.png
- quarto-marimo-lockup-horizontal-dark.svg
- quarto-marimo-lockup-horizontal-light.png
- quarto-marimo-lockup-horizontal-light.svg
- quarto-marimo-lockup-stacked-dark.png
- quarto-marimo-lockup-stacked-dark.svg
- quarto-marimo-lockup-stacked-light.png
- quarto-marimo-lockup-stacked-light.svg
- quarto-marimo-mark-dark.png
- quarto-marimo-mark-dark.svg
- quarto-marimo-mark-light.png
- quarto-marimo-mark-light.svg
- quarto-marimo-og.png
- update_tutorials.sh
- dataflow.qmd
- example-pdf.qmd
- external_dependencies.qmd
- fileformat.qmd
- for_jupyter_users.qmd
- index.qmd
- intro.qmd
- layout.qmd
- markdown.qmd
- markdown_format.qmd
- plots.qmd
- sql.qmd
- ui.qmd
- .gitignore
- _quarto.yml
- index.qmd
- styles.css
- build_browser.py
- release.sh
- index.ts
- authoring.ts
- browser-assets.ts
- index.ts
- process.ts
- projection.ts
- island-element.ts
- index.test.ts
- discovery.test.ts
- process.test.ts
- projection.test.ts
- __init__.py
- conftest.py
- test_authoring.py
- test_cli.py
- test_command.py
- test_compiler.py
- test_document.py
- test_protocol.py
- test_static.py
- quarto-types.d.ts
- .gitattributes
- .gitignore
- .pre-commit-config.yaml
- AGENTS.md
- CLAUDE.md
- CONTRIBUTING.md
- deno.json
- deno.lock
- LICENSE
- Makefile
- pixi.lock
- pyproject.toml
- README.md
- renovate.json
- SECURITY.md
- stylua.toml
- uv.lock
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
eval
View Details ▼
eval
Execute arguments as a single command in the current shell and return its result.
eval "{{echo foo}}"
Call `echo` with the "foo" argument:
eval "{{foo=bar}}"
Set a variable in the current shell:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
quarto
View Details ▼
quarto
An open-source scientific and technical publishing system built on Pandoc.
quarto create-project {{path/to/destination_directory}} --type {{book|default|website}}
Create a new project:
quarto create-project {{path/to/destination_directory}} --type {{website}} --template {{blog}}
Create a new blog website:
quarto render {{path/to/file.[qmd|rmd|ipynb]}} --to {{html|pdf|docx}}
Render input file(s) to different formats:
column
View Details ▼
column
Format `stdin` or a file into multiple columns.
Columns are filled before rows; the default separator is a whitespace.
printf "header1 header2\nbar foo\n" | column {{[-c|--output-width]}} {{30}}
Format the output of a command for a 30 characters wide display:
printf "header1 header2\nbar foo\n" | column {{[-t|--table]}}
Split columns automatically and auto-align them in a tabular format:
printf "header1,header2\nbar,foo\n" | column {{[-t|--table]}} {{[-s|--separator]}} {{,}}
Specify the column delimiter character for the `--table` option (e.g. "," for CSV) (defaults to whitespace):
query
View Details ▼
query
Display information about user sessions and process.
query session
Display all user sessions:
query session /server:{{hostname}}
Display the current user sessions on a remote computer:
query user
Display logged in users:
