search for: markdown_syntax

Displaying 2 results from an estimated 2 matches for "markdown_syntax".

2006 Dec 27
4
Maruku: a better Markdown interpreter for Ruby.
...There is syntax highlighting for code blocks via the `syntax` library for HTML, and via the `listings` package for Latex. Here there are some examples: http://maruku.rubyforge.org/maruku.md http://maruku.rubyforge.org/maruku.html http://maruku.rubyforge.org/maruku.pdf http://maruku.rubyforge.org/markdown_syntax.md http://maruku.rubyforge.org/markdown_syntax.html http://maruku.rubyforge.org/markdown_syntax.pdf Download instructions at http://maruku.rubyforge.org/maruku.html#download In general it should suffice to do: $ gem install maruku This is my first time to release a gem, so let me know of any...
2006 Dec 30
4
Escaping inside code blocks?
...l of these messages should be in-topic (tell me if not). Consider the input: --- `There is a literal backtick (\`) here.` `There is a literal backtick (\\`) here.` ``There is a literal backtick (`) here.`` --- The documentation says that line 2 and 3 are equivalent. (http://maruku.rubyforge.org/markdown_syntax.html#code) But this is Markdown.pl's result: --- <p><code>There is a literal backtick (\</code>) here.`</p> <p><code>There is a literal backtick (\\</code>) here.`</p> <p><code>There is a literal backtick (`) here.</code></...