選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

CHANGELOG.md 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. CHANGELOG
  2. =========
  3. Version 1.1.2 work in progress
  4. ------------------------------
  5. ...
  6. Version 1.1.1 work in progress
  7. ------------------------------
  8. - #112 Fixed parsing for custom self-closing HTML tags
  9. - #113 improve extensibility by making `prepareMarkers()` protected and add `parseBlock()` method
  10. - #114 better handling of continued inline HTML in paragraphs
  11. Version 1.1.0 on 06. Mar. 2015
  12. ------------------------------
  13. - improve compatibility with github flavored markdown
  14. - #64 fixed some rendering issue with emph and strong
  15. - #56 trailing and leading spaces in a link are now ignored
  16. - fixed various issues with table rendering
  17. - #98 Fix PHP fatal error when maximumNestingLevel was reached (@tanakahisateru)
  18. - refactored nested and lazy list handling, improved overall list rendering consistency
  19. - Lines containing "0" where skipped or considered empty in some cases (@tanakahisateru)
  20. - #54 escape characters are now also considered inside of urls
  21. Version 1.0.1 on 25. Okt. 2014
  22. ------------------------------
  23. - Fixed the `bin/markdown` script to work with composer autoloader (c497bada0e15f61873ba6b2e29f4bb8b3ef2a489)
  24. - #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.
  25. Version 1.0.0 on 12. Okt. 2014
  26. ------------------------------
  27. 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.
  28. 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.
  29. 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).
  30. You can try it out on the website: <http://markdown.cebe.cc/try>
  31. 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.
  32. Version 1.0.0-rc on 10. Okt. 2014
  33. ---------------------------------
  34. - #21 speed up inline parsing using [strpbrk](http://www.php.net/manual/de/function.strpbrk.php) about 20% speedup compared to parsing before.
  35. - #24 CLI script now sends all error output to stderr instead of stdout
  36. - #25 Added partial support for the Markdown Extra flavor
  37. - #10 GithubMarkdown is now fully supported including tables
  38. - #67 All Markdown classes are now composed out of php traits
  39. - #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.
  40. - Introduced an abstract syntax tree as an intermediate representation between parsing steps.
  41. This not only fixes some issues with nested block elements but also allows manipulation of the markdown
  42. before rendering.
  43. - This version also fixes serveral rendering issues.
  44. Version 0.9.2 on 18. Feb. 2014
  45. ------------------------------
  46. - #27 Fixed some rendering problems with block elements not separated by newlines
  47. Version 0.9.1 on 18. Feb. 2014
  48. ------------------------------
  49. Fixed an issue with inline markers that begin with the same character e.g. `[` and `[[`.
  50. Version 0.9.0 on 18. Feb. 2014
  51. ------------------------------
  52. The initial release.
  53. - Complete implementation of the original Markdown spec
  54. - GFM without tables
  55. - a command line tool for markdown parsing