UNPKG

10.7 kBMarkdownView Raw
18.2.1 / 2016-12-02
2------------------
3
4- Add missed h2..h6 to whitelisted block tags.
5
6
78.2.0 / 2016-12-01
8------------------
9
10- Updated CM spec compatibility to 0.27 (no significant changes).
11- Fix backticks handle inside tables, #303.
12- Fix edge case for fenced blocks with `~~~` in info, #301.
13- Fix fallback to reference if link is not valid, #302.
14
15
168.1.0 / 2016-11-03
17------------------
18
19- Make link parse helpers (`md.helpers`) pluggable, #299.
20
21
228.0.1 / 2016-10-18
23------------------
24
25- Tables: allow tab characters in markup
26
27
288.0.0 / 2016-09-16
29------------------
30
31- Updated CM spec compatibility to 0.26:
32 - Two consecutive newlines no longer terminate a list.
33 - Ordered list terminating a paragraph can now only start with 1.
34 - Adjust emphasis algorithm (`*foo**bar**baz*` is now parsed as `<strong>`
35 inside `<em>`).
36 - Fix tab width calculation inside lists and blockquotes.
37- Benchmarks src cleanup.
38- Remove testing in old nodes (but still use es5).
39
40
417.0.1 / 2016-08-16
42------------------
43
44- Fence renderer: fix concat of class array, #276.
45- Code renderer: do not render double space before attrs, #275.
46- Replacer: disable replacements inside autolinks, #272.
47
48
497.0.0 / 2016-06-22
50------------------
51
52- Bump `linkify-it` dependency to 2.0.0.
53 - `---` no longer terminates autodetected links by default.
54 - `md.linkifier.set('---', true)` will return old behaviour.
55- Major version bumped, because internals or `linkify-it` was changed.
56 You will not be affected anyhow, if not used direct access to
57 `require('linkify-it/re')` for customizations.
58
59
606.1.1 / 2016-06-21
61------------------
62
63- Render `code_inline` & `code_block` attributes if exist.
64
65
666.1.0 / 2016-06-19
67------------------
68
69- Updated `fence` renderer to not mutate token. Token stream should be
70 immutable after renderer call.
71
72
736.0.5 / 2016-06-01
74------------------
75
76- Process `\r` the same way as `\n` and `\r\n\`, #252.
77
78
796.0.4 / 2016-05-30
80------------------
81
82- Added `Token.attrGet()` method for convenience, #251.
83
84
856.0.3 / 2016-05-30
86------------------
87
88- Security fix: possible ReDOS in `linkify-it` (forced bump of `linkify-it` &
89 `uc-micro` dependencies). New installs will use fixed packages automatically,
90 but we bumped `markdown-it` version for sure & for web builds.
91
92
936.0.2 / 2016-05-16
94------------------
95
96- Fix: should not escape twice content of image alt attribute, #246.
97
98
996.0.1 / 2016-04-02
100------------------
101
102- Improve support of missing values in tables, #224.
103
104
1056.0.0 / 2016-02-11
106------------------
107
108- Maintenance release. Version bump caused by notable changes in CM spec
109 (multiline setext headers, no spaces inside links, ...). API was not changed.
110- Fit CM 0.24 spec requirements.
111- Fixed nesting limit check in inline blocks, #197.
112- Fixed posible tail loss in CLI ouput.
113
114
1155.1.0 / 2016-01-07
116------------------
117
118- Token: added `.attrSet()` & `.attrJoin()` methods.
119- Highlighter: allow wrapper override (if result starts with "<pre").
120
121
1225.0.3 / 2016-01-04
123------------------
124
125- Allow single column and mismatched columns count in tables.
126- Smartquotes: take into account adjacent tokens.
127- Fill `content` property in image token with `alt` source.
128
129
1305.0.2 / 2015-11-20
131------------------
132
133- Fix meta information (`token.markup` and `token.info`) for autolink tokens.
134
135
1365.0.1 / 2015-10-30
137------------------
138
139- Improved tables compatibility with github, #120.
140
141
1425.0.0 / 2015-10-05
143------------------
144
145- Internal API change. Due to new CM spec requirements, we had to update
146 internals. That should not touch ordinary users, but can affect some external
147 plugins. If you are plugin developper - see migration guide:
148 https://github.com/markdown-it/markdown-it/blob/master/docs/5.0_migration.md.
149- Updated CM spec compatibility to 0.22:
150 - Keep tabs (don't replace with spaces).
151 - Don't wrap iframes with paragraphs.
152 - Rewritten emphasis algorithm.
153- Fix closure compiler collisions (don't use reserved words), #159.
154
155
1564.4.0 / 2015-07-18
157------------------
158
159- Updated HTML blocks logic to CM 0.21 spec.
160- Minor fixes.
161
162
1634.3.1 / 2015-07-15
164------------------
165
166- Allow numbered lists starting from zero.
167- Fix class name injection in fence renderer.
168
169
1704.3.0 / 2015-06-29
171------------------
172
173- `linkify-it` dependency update (1.2.0). Now accepts dash at the end of links.
174
175
1764.2.2 / 2015-06-10
177------------------
178
179- CM spec 0.20.
180- Added support for multichar substituition in smartquites, #115.
181- Fixed code block render inside blockquites, #116.
182- Doc fixes.
183
184
1854.2.1 / 2015-05-01
186------------------
187
188- Minor emphasis update to match CM spec 0.19.
189
190
1914.2.0 / 2015-04-21
192------------------
193
194- Bumped [linkify-it](https://github.com/markdown-it/linkify-it) version to
195 1.1.0. Now links with IP hosts and without protocols are not linkified by
196 default, due possible collisions with some version numbers patterns (0.5.0.0).
197 You still can return back old behaviour by `md.linkify.set({ fuzzyIP: true })`.
198
199
2004.1.2 / 2015-04-19
201------------------
202
203- Bumped linkifier version. More strict 2-chars tald support for links without
204 schema. Should not linkify things like `io.js` and `node.js`.
205
206
2074.1.1 / 2015-04-15
208------------------
209
210- Improved pipe chars support in table cells, #86 (thanks to @jbt).
211
212
2134.1.0 / 2015-03-31
214------------------
215
216- Security: disabled `data:` URLs by default (except some image mimes), to avoid
217 possible XSS. Version bumped, because features changed (formally). If you did
218 not used `data:` URLs, consider this version as 4.0.4 (no API changes).
219- Simplified link validator code. Now more easy to understand and to copy
220 into your projects for customization.
221
222
2234.0.3 / 2015-03-25
224------------------
225
226- Updated linkifier.
227- Smartquotes rule cleanup (#76).
228- Fixed replacements rule bug in PhantomJS (#77).
229
230
2314.0.2 / 2015-03-22
232------------------
233
234- Fixed emphasis `marker` fields in tokens (#69).
235- Fixed html block tokens with numbers in name (#74).
236
237
2384.0.1 / 2015-03-13
239------------------
240
241- Updated `linkify-it` version.
242- Added custom container plugin demo.
243
244
2454.0.0 / 2015-03-11
246------------------
247
248- Breaking internal API changes. See [v4 migration notes](https://github.com/markdown-it/markdown-it/blob/master/docs/4.0_migration.md). In usual case you will need to update plugins.
249- Token internals changed
250- Unified the most of renderer methods.
251- Changed tokens creation - use `state.push(...)` (see sources)
252- Moved `normalizeUrl()` to root class as `.normalizeLink()` &
253 added `normalizeLinkText()` method.
254- Moved `.validateUrl()` to root class and simplified logic - no more need to
255 replace entities.
256- Joined md unescape & replace entities logic to `utils.unescapeAll()`.
257- Removed `replaceEntities()` in `utils`.
258- `md.utils.lib` now exposes useful libs for plugins.
259- Use entities data from external package.
260- Fixed emphasis regression, caused by CM v0.18 spec (#65).
261
262
2633.1.0 / 2015-03-05
264------------------
265
266- Significantly improved autolinking quality (use `linkify-it` package), #2.
267- Rewritten links normalizer to solve different edge cases (use `mdurl`
268 package), #29.
269- Moved link title entities replace out of renderer.
270- Fixed escaped entities in links (`foo\&amp;/bar`).
271- Improved smartquotes logic, #61.
272- Spec conformance update to 0.18.
273
274
2753.0.7 / 2015-02-22
276------------------
277
278- Match table columns count by header.
279- Added basic CLI support.
280- Added \v \f to valid whitespaces.
281- Use external package for unicode data (punctuation).
282
283
2843.0.6 / 2015-02-12
285------------------
286
287- Fixed hang on long vertical list of links. Appeared in 3.0.5. See #54 for
288 details. Thanks to @fengmk2 for report!
289- Table lines now can have escaped pipe char `\|` (#5).
290- Sync scroll result => source in demo.
291- Moved `normalizeReference()` to utils.
292
293
2943.0.5 / 2015-02-06
295------------------
296
297- Fixed link validator - could skip some kind of javascript links with uppercase
298 digital entities (thanks to @opennota)
299- Significantly improved tests coverage (with dead code removal and other
300 related things).
301
302
3033.0.4 / 2015-01-13
304------------------
305
306- Improved errors processing in url normalizer (for broken sequences).
307- Improved nesting limit processing in inline parser.
308- Reorganised tests & improved coverage.
309- Show inline diffs for failed tests.
310
311
3123.0.3 / 2015-01-11
313------------------
314
315- Fixed punctuation check in emphasis.
316
317
3183.0.2 / 2015-01-09
319------------------
320
321- Allow dashes in HTML tag names (needed for custom HTML tags).
322
323
3243.0.1 / 2015-01-07
325------------------
326
327- Improved link encoder - fix invalid surrogates to avoid errors.
328- Added # to terminator chars.
329
330
3313.0.0 / 2015-01-04
332------------------
333
334- Big split. All "rare" rules moved to external plugins (deflist, abbr, footnote,
335 sub, sup, ins, mark).
336- Updated CM spec conformance to v0.15 (better unicode support).
337- Added `md` (parser instance) link to all state objects (instead of former
338 options/parser).
339- References/Footnotes/Abbrs moved to `block` chain.
340- Input normalization moved to `core` chain.
341- Splitted links and images to separate rules.
342- Renamed some rules.
343- Removed `full` preset. Not needed anymore.
344- enable/disable methods now throw by default on invalid rules (exceptions can
345 be disabled).
346- Fixed inline html comments & cdata parse.
347- Replace NULL characters with 0xFFFD instead of strip.
348- Removed custom fences sugar (overcomplication).
349- Rewritten link components parse helpers.
350- More functions in `md.utils`.
351
352
3532.2.1 / 2014-12-29
354------------------
355
356- Added development info.
357- Fixed line breaks in definitions lists.
358- .use() now pass any number of params to plugins.
359
360
3612.2.0 / 2014-12-28
362------------------
363
364- Updated CM spec conformance to v0.13.
365- API docs.
366- Added 'zero' preset.
367- Fixed several crashes, when some basic rules are disabled
368 (block termination check, references check).
369
370
3712.1.3 / 2014-12-24
372------------------
373
374- Added curring to `set`/`configure`/`enable`/`disable` methods.
375- Demo rework - now can include plugins.
376- Docs update.
377
378
3792.1.2 / 2014-12-23
380------------------
381
382- Exposed helpers into parser instances (for plugins).
383- Removed utils from global export - been in instances seems enougth.
384- Refactored demo & added markdown-it-emoji to it.
385
386
3872.1.1 / 2014-12-22
388------------------
389
390- Refreshed browser builds, missed in prev release.
391- Minor changes.
392
393
3942.1.0 / 2014-12-21
395------------------
396
397- Separated method to enable rules by whitelist (enableOnly).
398- Changed second param of enable/disable ruler methods.
399- Shortcuts in main class for bulk enable/disable rules.
400- ASCII-friendly browserified files.
401- Separate package for spec tests.
402
403
4042.0.0 / 2014-12-20
405------------------
406
407- New project name & home! Now it's `markdown-it`,
408- Sugar for constructor call - `new` is not mandatory now.
409- Renamed presets folder (configs -> presets).