Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / cebe / markdown / CHANGELOG.md
1 CHANGELOG
2 =========
3
4 Version 1.0.2 on 26. Mar. 2018
5 ------------------------------
6
7 - Improved handling of custom syntax with `[[`, references should not use `[` as the first character in the reference name.
8
9 Version 1.0.1 on 25. Okt. 2014
10 ------------------------------
11
12 - Fixed the `bin/markdown` script to work with composer autoloader (c497bada0e15f61873ba6b2e29f4bb8b3ef2a489)
13 - #74 fixed a bug that caused a bunch of broken characters when non-ASCII input was given. Parser now handles UTF-8 input correctly. Other encodings are currently untested, UTF-8 is recommended.
14
15 Version 1.0.0 on 12. Okt. 2014
16 ------------------------------
17
18 This is the first stable release of version 1.0 which is incompatible to the 0.9.x branch regarding the internal API which is used when extending the Markdown parser. The external API has no breaking changes. The rendered Markdown however has changed in some edge cases and some rendering issues have been fixed.
19
20 The parser got a bit slower compared to earlier versions but is able to parse Markdown more accurately and uses an abstract syntax tree as the internal representation of the parsed text which allows extensions to work with the parsed Markdown in many ways including rendering as other formats than HTML.
21
22 For more details about the changes see the [release message of 1.0.0-rc](https://github.com/cebe/markdown/releases/tag/1.0.0-rc).
23
24 You can try it out on the website: <http://markdown.cebe.cc/try>
25
26 The parser is now also regsitered on the [Babelmark 2 page](http://johnmacfarlane.net/babelmark2/?normalize=1&text=Hello+**World**!) by [John MacFarlane](http://johnmacfarlane.net/) which you can use to compare Markdown output of different parsers.
27
28 Version 1.0.0-rc on 10. Okt. 2014
29 ---------------------------------
30
31 - #21 speed up inline parsing using [strpbrk](http://www.php.net/manual/de/function.strpbrk.php) about 20% speedup compared to parsing before.
32 - #24 CLI script now sends all error output to stderr instead of stdout
33 - #25 Added partial support for the Markdown Extra flavor
34 - #10 GithubMarkdown is now fully supported including tables
35 - #67 All Markdown classes are now composed out of php traits
36 - #67 The way to extend markdown has changed due to the introduction of an abstract syntax tree. See https://github.com/cebe/markdown/commit/dd2d0faa71b630e982d6651476872469b927db6d for how it changes or read the new README.
37 - Introduced an abstract syntax tree as an intermediate representation between parsing steps.
38   This not only fixes some issues with nested block elements but also allows manipulation of the markdown
39   before rendering.
40 - This version also fixes serveral rendering issues.
41
42 Version 0.9.2 on 18. Feb. 2014 
43 ------------------------------
44
45 - #27 Fixed some rendering problems with block elements not separated by newlines
46
47 Version 0.9.1 on 18. Feb. 2014
48 ------------------------------
49
50 Fixed an issue with inline markers that begin with the same character e.g. `[` and `[[`.
51
52 Version 0.9.0 on 18. Feb. 2014
53 ------------------------------
54
55 The initial release.
56
57 - Complete implementation of the original Markdown spec
58 - GFM without tables
59 - a command line tool for markdown parsing