bhollis / maruku

A pure-Ruby Markdown-superset interpreter (Official Repo).
MIT License
502 stars 80 forks source link

Code blocks (```) are broken #110

Closed stomar closed 11 years ago

stomar commented 11 years ago

Code blocks like this worked in 0.6.1, but now stopped working:


```
  puts 'Hi'
```
bhollis commented 11 years ago

As far as I know, those code blocks were not implemented at all in 0.6, and can be enabled by a config flag in 0.7.0

-Ben

Sent from my phone

On Nov 8, 2013, at 7:40 AM, Marcus Stollsteimer notifications@github.com wrote:

Code blocks like this worked in 0.6.1, but now stopped working:

  puts 'Hi'

— Reply to this email directly or view it on GitHubhttps://github.com/bhollis/maruku/issues/110 .

stomar commented 11 years ago
stomar commented 11 years ago

Sorry, my bad. I did some tests in the meantime, and it only "worked" in a very broken way, producing <code> (but not <pre>) elements in very simple cases like the above one.