Blame view

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