Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

documentation: embed marimo notebooks in docs website #3778

Merged
merged 30 commits into from
Mar 27, 2025

Conversation

superlopuh
Copy link
Member

@superlopuh superlopuh commented Jan 22, 2025

To test locally:

make venv
make docs-serve

See it live: https://xdsl--3778.org.readthedocs.build/3778/marimo/

I had to add a temporary mkdocs extension to inline the marimo thing, due to the upstream one being broken. They said that they were interested in fixing it, but I actually had to reimplement a part of a compression library that they depend on in js to re-create the URLs, so I don't want to be blocked on the Marimo team approving that.

Resolves #3852

@superlopuh superlopuh added the documentation Improvements or additions to documentation label Jan 22, 2025
@superlopuh superlopuh self-assigned this Jan 22, 2025
@superlopuh superlopuh marked this pull request as draft January 22, 2025 08:46
Copy link

codecov bot commented Jan 22, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 88.91%. Comparing base (f875f31) to head (da6c42a).
Report is 8 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #3778      +/-   ##
==========================================
- Coverage   89.01%   88.91%   -0.11%     
==========================================
  Files         320      322       +2     
  Lines       43551    43633      +82     
  Branches     5418     5421       +3     
==========================================
+ Hits        38768    38795      +27     
- Misses       3430     3485      +55     
  Partials     1353     1353              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@superlopuh superlopuh force-pushed the sasha/docs/marimo-tab branch from e5e344e to 3f553d1 Compare March 25, 2025 16:18
from typing import Any

from pymdownx.blocks import BlocksExtension # pyright: ignore[reportMissingTypeStubs]
from pymdownx.blocks.block import ( # pyright: ignore[reportMissingTypeStubs]
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I decided to do a drive-by linting of their project as a meditative activity: facelessuser/pymdown-extensions#2634

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is mostly a copy/paste from the marimo source code, I could've deleted a lot of code that we don't use but I'm hoping that these changes can just make it into their repo soon and we can delete this file entirely.

def create_marimo_app_url(code: str, mode: str = "read") -> str:
from lzstring2 import LZString

encoded_code = LZString.compress_to_encoded_URI_component(code)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the main difference with their version, I reimplemented the compression function they use to generate the URL in Python.

@@ -66,6 +68,9 @@ xdsl-tblgen = "xdsl.tools.tblgen_to_py:main"
platforms = ["Linux", "Mac OS-X", "Unix"]
zip-safe = false

[tool.uv.sources]
lzstring2 = { git = "https://github.com/superlopuh/lz-string.git" }
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The existing ports are not up to date and not compatible...

@superlopuh superlopuh marked this pull request as ready for review March 25, 2025 22:52
@superlopuh superlopuh changed the title [WIP] documentation: embed marimo notebooks in docs website documentation: embed marimo notebooks in docs website Mar 25, 2025
Copy link
Collaborator

@compor compor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lots of moving parts

@superlopuh superlopuh merged commit c93c3b0 into main Mar 27, 2025
18 checks passed
@superlopuh superlopuh deleted the sasha/docs/marimo-tab branch March 27, 2025 14:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
Development

Successfully merging this pull request may close these issues.

documentation: add marimo notebooks to xdsl docs
2 participants