maruku icon indicating copy to clipboard operation
maruku copied to clipboard

A pure-Ruby Markdown-superset interpreter (Official Repo).

Results 17 maruku issues
Sort by recently updated
recently updated
newest added

Running `maruku -i itex` on the input ``` \begin{c}\label{DoubleNegationMonad} \end{d} \begin{proof} Immediate from \ref{Monads} ``` raises an exception: ``` maruku/ext/math/parsing.rb:114:in `block in ': undefined method `captures' for nil:NilClass (NoMethodError) ```

Adds functionality to handle markdown tables that have rows that span multiple lines of source. This enables the source code to look considerably cleaner for table cells that have a...

CharSourceStrScan, an alternate CharSource implementation that is not enabled by default, expects characters to be 1 byte. UTF-8 strings break it. This removes it entirely. Example: Rendering ``` ö a...

Example of correct rendering: http://exherbo.org/docs/multibuild.html - `easy_multibuild.exlib`'s TOC entry works just fine, the header looks fine. This is done with Ruby 2.0. Incorrect rendering: http://dev.exherbo.org/~zlin/www/docs/multibuild.html (disregard the lack of CSS...

I have an extension that adds a span around some strings, but adds the same string in again as well. It gets run when creating the maruku object and again...

When there is a closing bracket in a link maruku uses this as the end of the link and not as part of the link. A markdown sample: ``` [some...

Bug

Right now Maruku only produces XHTML output, but it should be able to produce HTML output instead.

Feature

Supposedly Maruku supports the features from [Markdown Extra](http://michelf.com/projects/php-markdown/extra/), and they appear to be enabled by default. On that page, however, there is a description of “fenced code blocks” which are...

Feature
Needs Test

To make sure the LaTex renderer gets the love it needs, while not bogging down the main library (which most people use for the HTML output) with extra dependencies and...

LaTeX
Internal

`to_s5`, `to_s`, and `to_markdown` are all not particularly useful, and should be removed or moved into plugins.

Internal