Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2008-09-15 | Update ruby-maruku to 0.5.9. | minskim | 3 | -7/+15 | |
New features: - Implemented DIV syntax (Jacques Distler) - Quieter operations for command-line maruku. | |||||
2008-04-04 | Update ruby-maruku to version 0.5.8. Chanages from version 0.5.6 include: | jlam | 3 | -72/+241 | |
+ 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. | |||||
2007-06-15 | Install ruby modules only, and correct the package name. | minskim | 2 | -11/+3 | |
2007-06-15 | Import ruby-maruku. | minskim | 4 | -0/+102 | |
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). |