File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## 0.5.8 - 2020-12-13
4+
5+ ✨ NEW: Add linkify, thanks to [ @tsutsu3 ] ( https://github.com/tsutsu3 ) .
6+
7+ This extension uses [ linkify-it-py] ( https://github.com/tsutsu3/linkify-it-py ) to identify URL links within text:
8+
9+ - ` github.com ` -> ` <a href="http://github.com">github.com</a> `
10+
11+ ** Important:** To use this extension you must install linkify-it-py; ` pip install markdown-it-py[linkify] `
12+
13+ It can then be activated by:
14+
15+ ``` python
16+ from markdown_it import MarkdownIt
17+ md = MarkdownIt().enable(" linkify" )
18+ md.options[" linkify" ] = True
19+ ```
20+
321## 0.5.7 - 2020-12-13
422
523✨ NEW: Add smartquotes, thanks to [ @tsutsu3 ] ( https://github.com/tsutsu3 ) .
@@ -12,6 +30,7 @@ This extension will convert basic quote marks to their opening and closing varia
1230It can be activated by:
1331
1432``` python
33+ from markdown_it import MarkdownIt
1534md = MarkdownIt().enable(" replacements" ).enable(" smartquotes" )
1635```
1736
Original file line number Diff line number Diff line change 11from .main import MarkdownIt # noqa: F401
22
33
4- __version__ = "0.5.7 "
4+ __version__ = "0.5.8 "
You can’t perform that action at this time.
0 commit comments