quarto-marimo

(★ 194)

marimo extension for Quarto ⚡ run reactive code inside Quarto

File Explorer

  • .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

jsDelivr

jsDelivr 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 ▼

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 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 ▼

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 ▼

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 ▼

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:

// repository documentation