Import ruby-maruku.
authorminskim <minskim>
Fri, 15 Jun 2007 01:05:05 +0000 (01:05 +0000)
committerminskim <minskim>
Fri, 15 Jun 2007 01:05:05 +0000 (01:05 +0000)
commitb376633e612b9cf7103e54e398ba61f94641ff68
tree1cb1c4c7a067838fe519b16a27ad328df3f25190
parentda9c1831ff4cce1de088da18666ee754b424d266
Import ruby-maruku.

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).
textproc/ruby-maruku/DESCR [new file with mode: 0644]
textproc/ruby-maruku/Makefile [new file with mode: 0644]
textproc/ruby-maruku/PLIST [new file with mode: 0644]
textproc/ruby-maruku/distinfo [new file with mode: 0644]