-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use markdown-it-py to render Markdown content (#28)
Replace the MyST parser, which actually uses markdown-it-py. MyST is meant to be used with sphinx and didn't really offer that much in the way of customizing the Markdown rendering process. With markdown-it-py we can use some of their plugins and even write some of our own to support things like syntax highlighting for code blocks (with language specification, like in GitHub flavored markdown). For now, just replace the rendering and add a few plugins (typographic substitutions, footnotes, tables, and anchors for headings.
- Loading branch information
Showing
3 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ channels: | |
- conda-forge | ||
- defaults | ||
dependencies: | ||
- python==3.9 | ||
- python==3.10 | ||
- pip | ||
- make | ||
- pip: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters