Skip to content

Commit d5a6b70

Browse files
authored
📚 DOCS: Fix deprecation warning
1 parent 6204674 commit d5a6b70

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

docs/using.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,12 +159,15 @@ md.render("github.com")
159159

160160
### Plugins load
161161

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)).
163165

164166
```{code-cell} python
165167
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
168171
169172
md = (
170173
MarkdownIt()

0 commit comments

Comments
 (0)