{"id":27837023,"url":"https://github.com/marimo-team/quarto-marimo","last_synced_at":"2026-03-04T04:31:34.860Z","repository":{"id":233155789,"uuid":"786179056","full_name":"marimo-team/quarto-marimo","owner":"marimo-team","description":"marimo extension for Quarto ⚡ run reactive code inside Quarto","archived":false,"fork":false,"pushed_at":"2026-02-12T04:10:44.000Z","size":1743,"stargazers_count":149,"open_issues_count":19,"forks_count":8,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-02-12T14:06:47.850Z","etag":null,"topics":["quarto","quarto-extension"],"latest_commit_sha":null,"homepage":"https://marimo-team.github.io/quarto-marimo/","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marimo-team.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-04-13T16:54:11.000Z","updated_at":"2026-01-31T12:22:10.000Z","dependencies_parsed_at":"2025-11-28T10:08:33.418Z","dependency_job_id":null,"html_url":"https://github.com/marimo-team/quarto-marimo","commit_stats":null,"previous_names":["dmadisetti/quarto-marimo","marimo-team/quarto-marimo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/marimo-team/quarto-marimo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marimo-team%2Fquarto-marimo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marimo-team%2Fquarto-marimo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marimo-team%2Fquarto-marimo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marimo-team%2Fquarto-marimo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marimo-team","download_url":"https://codeload.github.com/marimo-team/quarto-marimo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marimo-team%2Fquarto-marimo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30071687,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T03:25:38.285Z","status":"ssl_error","status_checked_at":"2026-03-04T03:25:05.086Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["quarto","quarto-extension"],"created_at":"2025-05-02T18:04:50.369Z","updated_at":"2026-03-04T04:31:34.851Z","avatar_url":"https://github.com/marimo-team.png","language":"Lua","funding_links":[],"categories":["Python","Lua"],"sub_categories":[],"readme":"# marimo + quarto = :palm_tree: :heart:\n\n## marimo\n\nmarimo is a next generation python notebook that is embeddable anywhere.\nAs such, it is a great fit for quarto, which has reactive and robust a publishing system.\nThis repo is a quarto engine extension that lets you use marimo in your quarto documents; just follow the setup below.\n\n\u003e [!IMPORTANT]\n\u003e **Requires Quarto \u003e= 1.9.20** (pre-release). This extension uses the [engine extension API](https://quarto.org/docs/extensions/engines.html) introduced in 1.9.20.\n\u003e Install with: `quarto update --pre-release`\n\n### Quick Start\n\n**1.** Tool Installation\n\n - Install [uv](https://docs.astral.sh/uv/getting-started/installation/)\n - Install [Quarto](https://quarto.org/docs/get-started/) (\u003e= 1.9.20 pre-release)\n\n**2.** Create a project\n\n```bash\nquarto create project\n```\n\n**3.** Add `quarto-marimo` to your project\n\n```bash\nquarto add marimo-team/quarto-marimo\n```\n\n**4.** Edit your `index.qmd`\n\n````yaml\n---\ntitle: My Document\n---\n\n# Just another Quarto project\n\n```python {.marimo}\n#| echo: true\nimport marimo as mo\nslider = mo.ui.slider(1, 10, 1, label=\"Look, a slider!\")\nslider\n```\n\n## More things\n\nAnd we can respond!\n\n```python {.marimo}\n# No echo here means we do not show the code\nmo.md(\"NaN\" * slider.value + \" Batman!\")\n```\n````\n\n**5.** Run!\n\n```bash\nquarto preview\n# uvx --with marimo --from quarto-cli quarto preview\n```\n\n### Features\n\nThis plugin uses [`marimo\nislands`](https://docs.marimo.io/guides/exporting/?h=islands#islands-in-action)\n:palm_tree: which allows marimo content to be embedded in between other\ncontent. In addition to base marimo support, some [Quarto execution\noptions](https://quarto.org/docs/computations/execution-options.html) are also\nsupported:\n\n| Option | Default | Description |\n|--------|---------|-------------|\neval | True | Whether this code should run\necho | False | Whether to show the code in the output\noutput | True | Whether to show the output\nwarning | True | Whether to show warnings\nerror | True | Whether to show errors\ninclude | True | Whether to consider the block as part of the document\neditor | False | Whether to show the editor (only for marimo)\n\n:bulb: **Note**: You can open `.md` and `.qmd` files directly in marimo\nlike a normal notebook. Read more about it in the\n[tutorial](https://github.com/marimo-team/marimo/blob/main/marimo/_tutorials/markdown_format.md)\n\n:notebook: [**Check out the marimo mkdocs\nextension**](https://github.com/marimo-team/mkdocs-marimo)\n\n### Environment\n\nBy default, marimo will use `uv` to create a new virtual environment.\nYou can specify dependencies by [following our docs](https://docs.marimo.io/guides/package_reproducibility#markdown-file-support)\nand setting the yaml `pyproject` value in your notebook.\n\nTo disable sandboxed behavior, set `external-env: true` in your notebook yaml; this requires an active virtual environment with marimo installed.\n\n\u003e [!NOTE]\n\u003e You can add `pyproject` or `enternal-env` to your `_quarto.yml` file for global behavior\n\nNote, that local files are not bound to be accessible in WASM runtimes- and on\nweb load, dependencies are installed via [`micropip`](https://github.com/pyodide/micropip).\nAs such, this is mainly advised for PDF rendering, or other output formats that do not support\nJavascript.\n\n---\n\n## Development\n\nTo build the TypeScript engine extension:\n\n```bash\nquarto call build-ts-extension\n```\n\nThis bundles `src/marimo-engine.ts` into `_extensions/marimo/marimo-engine.js`.\n\n### Migrating from v0.4.x (Lua filter)\n\nIf you were using `filters: marimo-team/marimo` in your YAML frontmatter,\nyou can remove that line. The extension now auto-detects `{python .marimo}`\ncode blocks. The old `filters:` syntax still works but will print a\ndeprecation warning.\n\n---\n\nCredits: [holoviz-quarto](https://github.com/awesome-panel/holoviz-quarto) for ideas on layout\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarimo-team%2Fquarto-marimo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarimo-team%2Fquarto-marimo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarimo-team%2Fquarto-marimo/lists"}