middleman / middleman-syntax

Code syntax highlighting plugin via Rouge for Middleman
https://middlemanapp.com
MIT License
179 stars 57 forks source link

Disable the line numbers on a specific code block when using Markdown and Redcarpet #63

Closed tuomasj closed 8 years ago

tuomasj commented 8 years ago

This is a pull request for a issue which was discussed earlier on #62.

Adds parameter handler for markdown and redcarpet renderer, currently only support line_numbers=false option.

Example:

```ruby?line_numbers=false
def my_cool_method(message)
  puts message
end
bhollis commented 8 years ago

Fantastic, thanks!