summaryrefslogtreecommitdiff
path: root/textproc/ruby-maruku
AgeCommit message (Collapse)AuthorFilesLines
2010-09-10Update textproc/ruby-maruku to 0.6.0.taca3-30/+19
* 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.
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg1-2/+1
2009-06-14Remove @dirrm entries from PLISTsjoerg1-33/+1
2009-06-12* Add LICENSE.taca3-2/+16
* Fix build problem with new Rubygems by removing an obsolete method call. No PKGREVISION bump since there is no change with built package.
2008-09-15Update ruby-maruku to 0.5.9.minskim3-7/+15
New features: - Implemented DIV syntax (Jacques Distler) - Quieter operations for command-line maruku.
2008-04-04Update ruby-maruku to version 0.5.8. Chanages from version 0.5.6 include:jlam3-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-15Install ruby modules only, and correct the package name.minskim2-11/+3
2007-06-15Import ruby-maruku.minskim4-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).