Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ per-file-ignores =
# sphinx-gallery examples use `# %%` section breaks, so imports
# are not necessarily at the top of the file
docs/examples/*.py:E402
docs/notebooks/*.py:F811
2 changes: 1 addition & 1 deletion docs/examples/quality/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Multiplot
=========

.. marimo:: notebooks/example.py
.. marimo:: example.py
:height: 800px
:width: 100%
:theme: light
Expand Down
9 changes: 0 additions & 9 deletions docs/examples/quality/example.rst

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ def __(mo):


if __name__ == "__main__":
app.run()
app.run()
3 changes: 2 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
"sphinx_marimo", # for including interactive marimo notebooks
]

marimo_notebook_dir = "notebooks" # Directory containing .py Marimo notebooks
# Directory containing Marimo notebooks, relative to conf.py file
marimo_notebook_dir = "../notebooks"

myst_enable_extensions = ["colon_fence"] # for sphinx-design

Expand Down