- โจ NEW: Add simple typographic replacements, thanks to [tsutsu3](https://github.com/tsutsu3):
This allows you to add the `typographer` option to the parser, to replace particular text constructs:
- ``(c)``, ``(C)`` โ ยฉ
- ``(tm)``, ``(TM)`` โ โข
- ``(r)``, ``(R)`` โ ยฎ
- ``(p)``, ``(P)`` โ ยง
- ``+-`` โ ยฑ
- ``...`` โ โฆ
- ``?....`` โ ?..
- ``!....`` โ !..
- ``????????`` โ ???
- ``!!!!!`` โ !!!
- ``,,,`` โ ,
- ``--`` โ &ndash
- ``---`` โ &mdash
python
md = MarkdownIt().enable("replacements")
md.options["typographer"] = True
- ๐ DOCS: Improve documentation for CLI, thanks to [westurner](https://github.com/westurner)
- ๐ IMPROVE: Use `re.sub()` instead of `re.subn()[0]`, thanks to [hukkinj1](https://github.com/hukkinj1)
- ๐ FIX: An exception raised by having multiple blank lines at the end of some files