summaryrefslogtreecommitdiff
path: root/textproc/ruby-maruku/PLIST
AgeCommit message (Collapse)AuthorFilesLines
2017-03-20Update ruby-maruku to 0.7.3.taca1-3/+10
* pkgsrc change: add pkg_alternatives support. 0.7.3 * Compatibility with Ruby 2.4's unified integers. #141
2015-03-13Update ruby-maruku to 0.7.2.taca1-2/+3
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
2014-03-14Update ruby-maruku to 0.7.1.taca1-147/+168
Changes are not available, please refer commit log: <https://github.com/bhollis/maruku/commits/master>.
2012-09-16Update ruby-maruku to 0.6.1.taca1-3/+1
Changes are unavailable.
2010-09-10Update textproc/ruby-maruku to 0.6.0.taca1-22/+10
* 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
2008-09-15Update ruby-maruku to 0.5.9.minskim1-1/+9
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:jlam1-56/+232
+ 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.minskim1-5/+1
2007-06-15Import ruby-maruku.minskim1-0/+60
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).