Skip to content

Commit

Permalink
📚 DOCS: Fix myst-docutils README (#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney authored Dec 16, 2021
1 parent 5d1b081 commit d84e625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docutils_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ def modify_setup_cfg(content: str) -> str:

def modify_readme(content: str) -> str:
"""Modify README.md."""
content = content.replace("myst-parser", "myst-docutils")
content = content.replace(
"# MyST-Parser",
"# MyST-Parser\n\nNote: myst-docutils is identical to myst-parser, "
"but without installation requirements on sphinx",
)
content = content.replace("myst-parser", "myst-docutils")
content = content.replace("myst-docutils.readthedocs", "myst-parser.readthedocs")
content = content.replace(
"readthedocs.org/projects/myst-docutils", "readthedocs.org/projects/myst-parser"
Expand Down

0 comments on commit d84e625

Please sign in to comment.