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
Copy file name to clipboardExpand all lines: docs/using.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -159,12 +159,15 @@ md.render("github.com")
159
159
160
160
### Plugins load
161
161
162
-
Plugins load collections of additional syntax rules and render methods into the parser
162
+
Plugins load collections of additional syntax rules and render methods into the parser.
163
+
A number of useful plugins are available in [`mdit_py_plugins`](https://github.com/executablebooks/mdit-py-plugins) (see [the plugin list](./plugins.md)),
164
+
or you can create your own (following the [markdown-it design principles](./architecture.md)).
163
165
164
166
```{code-cell} python
165
167
from markdown_it import MarkdownIt
166
-
from markdown_it.extensions.front_matter import front_matter_plugin
167
-
from markdown_it.extensions.footnote import footnote_plugin
168
+
import mdit_py_plugins
169
+
from mdit_py_plugins.front_matter import front_matter_plugin
170
+
from mdit_py_plugins.footnote import footnote_plugin
0 commit comments