File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -33,21 +33,28 @@ for even more speed!
33
33
34
34
## Installation
35
35
36
+ ### PIP
37
+
36
38
``` bash
37
- conda install -c conda-forge markdown-it-py
39
+ pip install markdown-it-py[plugins]
38
40
```
39
41
40
- or
42
+ or with extras
41
43
42
44
``` bash
43
- pip install markdown-it-py[plugins]
45
+ pip install markdown-it-py[linkify,plugins]
46
+ ```
47
+
48
+ ### Conda
49
+
50
+ ``` bash
51
+ conda install -c conda-forge markdown-it-py
44
52
```
45
53
46
54
or with extras
47
55
48
56
``` bash
49
57
conda install -c conda-forge markdown-it-py linkify-it-py mdit-py-plugins
50
- pip install markdown-it-py[linkify,plugins]
51
58
```
52
59
53
60
## Usage
@@ -63,7 +70,7 @@ from mdit_py_plugins.front_matter import front_matter_plugin
63
70
from mdit_py_plugins.footnote import footnote_plugin
64
71
65
72
md = (
66
- MarkdownIt(' commonmark' , {' breaks' :True ,' html' :True })
73
+ MarkdownIt(' commonmark' , {' breaks' :True ,' html' :True })
67
74
.use(front_matter_plugin)
68
75
.use(footnote_plugin)
69
76
.enable(' table' )
You can’t perform that action at this time.
0 commit comments