2012-06-13 16:41:03 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-kramdown to 0.13.7.
kramdown 0.13.7 released
This release, aside from fixing bugs and some other minor changes, adds a new
converter for removing HTML tags from an element tree. This means that one can
now do
kramdown -i html -o remove_html_tags,kramdown my_document.html
and get a nice kramdown document from a full HTML document!
Changes
1 major change
* Implemented RemoveHtmlTags converter for removing HTML tags from an
element tree (fixes bug RF#29282 requested by Bernard Potocki)
3 minor changes
* Updated kramdown binary to support multiple, chained output formats
* Added a new option for setting a default coderay highlighting language
(requested by Lou Quillio)
* Feature request RF#29575: Added support for ­ soft-hyphen entity
(requested by Alexander Gro©Î)
5 bug fixes
* Fixed bug RF#29576: Footnotes in headers resulted in duplicated id attr in
TOC (reported by korthaerd)
* Multi-line titles in links are now correctly parsed
* DOCTYPE declaration is now correctly parsed independent of case
* Setting of nil options works now by using the String ¡Ænil¡Ç
* Fixed table-of-content test cases (test went green although the meaning of
the test was not satisfied due to copy-paste - d¡Çoh!)
1 documentation fix
* Fixed bug RF#29577: sidebar link to news page was broken for HTML pages in
sub directories (reported by korthaerd)
|
2012-06-02 03:11:44 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
Update ruby-kramdown to 0.13.6.
commit 40e6cde2d3e1a4f9f6bc14a243b22b4ae3311ca2
Author: Thomas Leitner <t_leitner@gmx.at>
Date: Wed May 9 19:53:47 2012 +0200
Updated release notes and version number
doc/news/release_0_13_6.page
doc/sidebar.template
lib/kramdown/version.rb
man/man1/kramdown.1.erb
commit 7f66dca331f78d84ef22c489c755360b304cb41f
Author: Thomas Leitner <t_leitner@gmx.at>
Date: Tue May 8 21:20:46 2012 +0200
Fixed bug RF#29557: Parsing fails with lists with empty list item
If a list item is completely empty, it needs to be handled specially,
which is done now.
lib/kramdown/converter/kramdown.rb
lib/kramdown/parser/kramdown/list.rb
test/testcases/block/08_list/special_cases.html
test/testcases/block/08_list/special_cases.text
commit ac00ea8ea590ece6c7a6c53b30920114f349b79b
Author: Thomas Leitner <t_leitner@gmx.at>
Date: Tue May 8 20:02:43 2012 +0200
Fixed problem with CDATA section in non-XHTML pages
The HTML parser does not parse CDATA in script tags and
therefore the CDATA tags were displayed in MathJax output.
By commenting out the CDATA tags (with LaTeX comment syntax)
we avoid this problem.
lib/kramdown/converter/html.rb
lib/kramdown/parser/html.rb
test/testcases/block/15_math/normal.html
|
2012-03-18 03:45:58 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update ruby-kramdown to 0.13.5.
Changes are too many to write here, please refer ChangeLog.
|
2011-12-17 07:25:16 by Takahiro Kambe | Files touched by this commit (3) |
Log message:
Update textproc/ruby-kramdown to 0.13.4.
Changes
* 1 minor change:
- Added a converter that extracts the TOC of a document (requested by
Brendan Hay). Note that this is only useful if you use kramdown as a
library!
* 7 bug fixes
- Fixed a typo: It should be --output and not --ouput (patch by
postmodern)
- Fixed HTML converter to correctly output empty span tags (patch by
John Croisant)
- Fixed bug RF#29350: Parsing of HTML tags with mismatched case now
works
- Fixed bug RF#29426: Content of style tags is treated as raw text now
- HTML converter now uses rel instead of rev to be HTML5 compatible
(patch by Joe Fiorini)
- Fixed Ruby 1.9.3 related warnings
- Fixed HTML parser to work around an implementation change of
Array#delete_if in Ruby 1.9.3
|