ChangeLog in kramdown-0.13.4 vs ChangeLog in kramdown-0.13.5

- old
+ new

@@ -1,4 +1,241 @@ +commit ce785c7cc29372cb7c5c47647535b1943348aff6 +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Sun Feb 19 15:34:37 2012 +0100 + + Updated release notes, version number and benchmark graphs + +doc/img/graph-ruby-1.8.5-231.png +doc/img/graph-ruby-1.8.6-399.png +doc/img/graph-ruby-1.8.7-249.png +doc/img/graph-ruby-1.8.7-302.png +doc/img/graph-ruby-1.9.2p136-136.png +doc/img/graph-ruby-1.9.3p0-0.png +doc/img/graph-ruby-1.9.3p125-125.png +doc/news/release_0_13_5.page +doc/sidebar.template +doc/tests.page +lib/kramdown/version.rb + +commit 90f0583232e814334b2bb8c7fa3228b2f4e30f81 +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Sun Feb 19 10:14:58 2012 +0100 + + Bug fix: Empty id attributes are handled better now + + * The HTML converter does not output empty id attributes anymore. + * The kramdown converter now always converts empty id attributes + to IAL form. + +lib/kramdown/converter/kramdown.rb +lib/kramdown/utils/html.rb +test/testcases/block/04_header/with_auto_ids.html +test/testcases/block/04_header/with_auto_ids.text + +commit d956b98fdf449af145bc8b52539abdb99a062cda +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Sun Feb 19 09:53:03 2012 +0100 + + Small typo fix in quickref + +doc/quickref.page + +commit 4df3c5aaad763cc9d8fd4b129a5cdd245ed5a7f7 +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Sun Feb 19 09:38:29 2012 +0100 + + Updated homepage contents + +doc/documentation.page +doc/index.page +doc/installation.page +doc/news.page +doc/syntax.page +doc/tests.page + +commit c0bcd765e131b671661af70274ce632111ad89bb +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Sun Feb 19 09:37:15 2012 +0100 + + Updated website design + +doc/bg.png +doc/default.scss.css +doc/default.template +doc/design.scss.css +doc/sidebar.template + +commit d530421d0a3794010cd0c022decb097158e90732 +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Sun Feb 19 09:35:51 2012 +0100 + + Disabling line numbers in code listings on homepage + +Rakefile + +commit a47a5c49e35f9ccb220dca7b5b8ac7d585026ef6 +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Sun Feb 19 09:25:01 2012 +0100 + + Updated copyright notice updating code + +Rakefile + +commit 21ce307a6766d131bf3a61de1142d88b0bd0a8be +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Sun Feb 19 09:24:22 2012 +0100 + + Updated copyright notices + +bin/kramdown +lib/kramdown.rb +lib/kramdown/compatibility.rb +lib/kramdown/converter.rb +lib/kramdown/converter/base.rb +lib/kramdown/converter/html.rb +lib/kramdown/converter/kramdown.rb +lib/kramdown/converter/latex.rb +lib/kramdown/converter/toc.rb +lib/kramdown/document.rb +lib/kramdown/element.rb +lib/kramdown/error.rb +lib/kramdown/options.rb +lib/kramdown/parser.rb +lib/kramdown/parser/base.rb +lib/kramdown/parser/html.rb +lib/kramdown/parser/kramdown.rb +lib/kramdown/parser/kramdown/abbreviation.rb +lib/kramdown/parser/kramdown/autolink.rb +lib/kramdown/parser/kramdown/blank_line.rb +lib/kramdown/parser/kramdown/block_boundary.rb +lib/kramdown/parser/kramdown/blockquote.rb +lib/kramdown/parser/kramdown/codeblock.rb +lib/kramdown/parser/kramdown/codespan.rb +lib/kramdown/parser/kramdown/emphasis.rb +lib/kramdown/parser/kramdown/eob.rb +lib/kramdown/parser/kramdown/escaped_chars.rb +lib/kramdown/parser/kramdown/extensions.rb +lib/kramdown/parser/kramdown/footnote.rb +lib/kramdown/parser/kramdown/header.rb +lib/kramdown/parser/kramdown/horizontal_rule.rb +lib/kramdown/parser/kramdown/html.rb +lib/kramdown/parser/kramdown/html_entity.rb +lib/kramdown/parser/kramdown/line_break.rb +lib/kramdown/parser/kramdown/link.rb +lib/kramdown/parser/kramdown/list.rb +lib/kramdown/parser/kramdown/math.rb +lib/kramdown/parser/kramdown/paragraph.rb +lib/kramdown/parser/kramdown/smart_quotes.rb +lib/kramdown/parser/kramdown/table.rb +lib/kramdown/parser/kramdown/typographic_symbol.rb +lib/kramdown/parser/markdown.rb +lib/kramdown/utils.rb +lib/kramdown/utils/entities.rb +lib/kramdown/utils/html.rb +lib/kramdown/utils/ordered_hash.rb +lib/kramdown/version.rb +test/run_tests.rb +test/test_files.rb + +commit 512b00a6d050f506c43b824861f7bbf459862a19 +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Sun Feb 19 09:12:38 2012 +0100 + + Fixed bug RF#29521: HTML math output not always XHTML compatible + + The characters < and & are not allowed in a script tag in XHTML. + So since the HTML converter uses script tags for math elements, + whenever these characters appear in a value the value is wrapped + in a CDATA section to make the output XHTML compatible. + +lib/kramdown/converter/html.rb +lib/kramdown/parser/html.rb +test/testcases/block/15_math/normal.html + +commit 8f111947dbcea064a997662d65cd53e6e39c8c40 +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Sat Feb 18 20:06:42 2012 +0100 + + Fixed bug RF#29520: inline math statements interpreted as math blocks + + If a paragraph started and ended with an inline math statement, it was + parsed as math block. This is fixed now. + + Also, it is now better explained in the kramdown syntax documentation + how special cases are handled. + +doc/syntax.page +lib/kramdown/converter/kramdown.rb +lib/kramdown/parser/kramdown/math.rb +test/testcases/span/math/normal.html +test/testcases/span/math/normal.text + +commit f5b585513508704563cc0bb343869f91520ff853 +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Sat Feb 18 11:11:45 2012 +0100 + + Fixed problem with missing methods/constants on older Ruby 1.8.6 versions + +lib/kramdown/compatibility.rb + +commit 394d5de7cad34ed5e0bdcfc0fcc7a1a28b3f0229 +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Tue Jan 31 17:32:09 2012 +0100 + + Moved camelize method from Document#method_to_class_name to Utils.camelize + +lib/kramdown/document.rb +lib/kramdown/utils.rb + +commit 7adc3bda20a8290f0af588da7816eec591d4ecaa +Author: tomykaira <tomykaira@gmail.com> +Date: Fri Dec 30 18:08:43 2011 +0900 + + Fix Document#method_missing to accept snake_cased class name + + When doc.to_my_converter is called, it should use MyConverter, but used My_converter + +lib/kramdown/document.rb + +commit a6b181a9baf2eeeabeb55a1a9d5b26791fecad08 +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Sat Jan 21 12:18:22 2012 +0100 + + HTML attributes names are now converted to lower case + +doc/syntax.page +lib/kramdown/parser/html.rb +lib/kramdown/parser/kramdown/html.rb +test/testcases/block/09_html/html5_attributes.html +test/testcases/block/09_html/simple.text +test/testcases/span/05_html/normal.text + +commit 170ca36a60d823803f575bf5632d9e9d1e74f7db +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Sat Jan 21 12:05:31 2012 +0100 + + HTML attributes without values are now supported + + This means that one can write boolean HTML attributes now without + assigning an empty value. + +doc/syntax.page +lib/kramdown/converter/kramdown.rb +lib/kramdown/parser/html.rb +lib/kramdown/parser/kramdown/html.rb +test/testcases/block/09_html/html5_attributes.html +test/testcases/block/09_html/html5_attributes.text +test/testcases/span/05_html/normal.html +test/testcases/span/05_html/normal.text + +commit 2c1d7c5e66bfe42052dc43374e123a48e7cb2ad6 +Author: Thomas Leitner <t_leitner@gmx.at> +Date: Fri Dec 16 18:40:15 2011 +0100 + + Fix to work with newer RDoc versions + +Rakefile + commit 2a93cbc0e1bbe705159c645ae617538bad125394 Author: Thomas Leitner <t_leitner@gmx.at> Date: Fri Dec 16 18:26:32 2011 +0100 Updated release notes, version number and benchmark graphs