0.7.2
* Fix angle-bracket links starting with https:// at the beginning of a
line. #126
* Fix error in footnote generation. #129
* Fix for ellipses dissapearing at the end of a line. #131
* Reimplement smartypants for a large overall speed improvement. #132
* #maruku_error will now respect :on_error => :ignore. #133
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Add LICENSE.
* Add CONFLICTS since it will install the same name commands both
ruby18 and ruby19 based packages.
Changes are unknown.
+ Install as a Ruby gem.
* Fixed bugs:
* Fix bug in which links `<http://..>` at beginning of lines could
sometimes be mistaken for HTML.
* Empty cells in table are now allowed.
* Now this is accepted (Maruku did not like the "." inside the link)
[a. b] is a link.
[a. b]: http://site.com/
* Fix bug about double-encoding of ampersands in code blocks.
* Fixed compatibility bug with Ruby 1.8.6 patchlevel 110.
Maruku is a Markdown interpreter written in Ruby.
The other Ruby implementation of Markdown is Bluecloth. Maruku is
much different in philosophy from Bluecloth; the biggest difference is
that parsing is separated from rendering. In Maruku, an in-memory
representation of the Markdown document is created. Instead,
Bluecloth mantains the document in memory as a String at all times,
and does a series of gsub to transform to HTML.
Maruku is usually faster than Bluecloth. Bluecloth is faster for very
small documents. Bluecloth sometimes chokes on very big documents (it
is reported that the blame should be on Ruby's regexp implementation).