Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed https://markdown-it.github.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

114 lines
2.8 KiB

2.0.0 / 2014-12-20
------------------
- New project name & home! Now it's `markdown-it`,
- Sugar for constructor call - `new` is not mandatory now.
10 years ago
1.5.0 / 2014-12-12
10 years ago
------------------
- Added Demo sync scroll, to show how lines mapping can be used.
- Improved IE8 support. Now you need only es5-shim, without es5-sham.
- Fixed errors on refs/attrs/footnoted with special names like `__proto__`.
- Renamed Ruler() private properties, to show those should not be accessed
directly.
- Fixed Makefile OSX compatibility.
10 years ago
10 years ago
1.4.2 / 2014-11-29
------------------
- Added footnotes support.
- Added definitions lists support.
- Added `fence_custom` renderer extension to easy override
named fenced blocks (useful for diagrams and so on).
- Exposed `./common/utils` to simplify custom renderers.
10 years ago
1.4.1 / 2014-11-13
------------------
- Moved links decode/encode from renderer to parser.
- Added missed validator call for scoped urls in links.
- Handle exceptions in `decoreURI` (regression).
10 years ago
1.4.0 / 2014-11-09
10 years ago
------------------
- Added `core` chain, to better organize code and improve pluggability.
- Added `renderInline()` and `parseInline()` methods.
10 years ago
- Added abbreviations support.
10 years ago
- Fixed problem with tables, having single column.
10 years ago
- Fixed rendered rules rewrite for inline tags.
- Changed internal api (ruler, inline, block classes).
10 years ago
- Removed typographer chain (rules moved to `core`).
10 years ago
- Removed all typographer options. Quote chars defs moved to `options.quotes`.
10 years ago
1.3.0 / 2014-10-29
------------------
- Fixed problem with minified & mangled browser version.
- Changed ruler API.
10 years ago
1.2.2 / 2014-10-29
------------------
- Fixed regression from 1.2.1 for data without tailing `\n`.
- Fixed blockquote line ranges.
- Added subscript/superscript support.
- Updated CommonMark spec and updated implementation.
- Other minor changes.
10 years ago
1.2.1 / 2014-10-28
------------------
- Fixed speed degradation when linkifier enabled.
- Added coverage reports.
- Added debug view to demo (show internal representation)
- Other minor optimizations and cleanup.
1.2.0 / 2014-10-26
10 years ago
------------------
- Added `<ins>` rule.
- Added `<mark>` rule.
- Added presets support (default, commonmark, full).
- Exposed `.configure()` method to load rules & options config with one command.
- Moved html escaping to renderer.
10 years ago
10 years ago
1.1.2 / 2014-10-23
10 years ago
------------------
10 years ago
- Fixed speed regression.
10 years ago
- Use base64 encoding for permalinks (workaround for github).
- Improved default link validator.
- Updated cache storage logic for inline parser.
10 years ago
1.1.1 / 2014-10-22
------------------
- Fixed `Ruler.after()` method.
10 years ago
- Fixed linkification.
- Simplified loose/tight rendering.
10 years ago
- Refactored inline parser. No close coupled code in rules anymore.
10 years ago
1.1.0 / 2014-10-20
------------------
- Code refactoring, bugfixes, API update.
- Added source lines info to block nodes.
1.0.0 / 2014-10-16
------------------
- First release.