Skip to content
Open
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
2 changes: 1 addition & 1 deletion marimo/_ast/codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import re
import sys
import textwrap
from typing import TYPE_CHECKING, Any, Literal, Optional
from typing import TYPE_CHECKING, Any, Literal, Optional, TypeAlias

from marimo import _loggers
from marimo._ast.app_config import _AppConfig
Expand Down
3 changes: 1 addition & 2 deletions marimo/_convert/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ def markdown_to_marimo(source: str) -> str:
return "\n".join(
[
"mo.md(",
# r-string: a backslash is just a backslash!
codegen.indent_text('r"""'),
' r"""',
source,
'"""',
")",
Expand Down