You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consecutive borderless markdown cells have substantial padding between them, making them look awkward compared to a single cell containing the same markdown content.
A small issue, but something I have frequently noticed and find distracting as I make example notebooks meant to be viewed in edit mode.
importmarimo__generated_with="0.11.0"app=marimo.App()
@app.cell(hide_code=True)def_(mo):
mo.md(
""" ## Example This is an example in a single cell """
)
return@app.cell(hide_code=True)def_(mo):
mo.md(r"""## Example""")
return@app.cell(hide_code=True)def_(mo):
mo.md(r"""This is an example in two cells.""")
return@app.celldef_():
importmarimoasmoreturn (mo,)
if__name__=="__main__":
app.run()
The text was updated successfully, but these errors were encountered:
Consecutive borderless markdown cells have substantial padding between them, making them look awkward compared to a single cell containing the same markdown content.
A small issue, but something I have frequently noticed and find distracting as I make example notebooks meant to be viewed in edit mode.
The text was updated successfully, but these errors were encountered: