Skip to content

Commit

Permalink
fix: lower dep on pymdown (#3156)
Browse files Browse the repository at this point in the history
Fixes #3155
  • Loading branch information
mscolnick authored Dec 13, 2024
1 parent 2934e39 commit 9b00dc4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions marimo/_output/md.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,11 @@ def __init__(
"pymdownx.superfences",
# Task lists
"pymdownx.tasklist",
# Caption
"pymdownx.blocks.caption",
# Tabs
"pymdownx.blocks.tab",
# Require 10.12, but go as low as 10.x
# # Caption
# "pymdownx.blocks.caption",
# # Tabs
# "pymdownx.blocks.tab",
# Critic - color-coded markup
"pymdownx.critic",
# Emoji - :emoji:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies = [
# compile markdown to html
"markdown>=3.4,<4",
# add features to markdown
"pymdown-extensions>=9.0,<11",
"pymdown-extensions>=10,<11",
# syntax highlighting of code in markdown
"pygments>=2.13,<3",
# for reading, writing configs
Expand Down

0 comments on commit 9b00dc4

Please sign in to comment.