Eliott Appleford
Eliott Appleford
I had exactly the same thought when `Oga` was released, this is a solid improvement! Thanks for coding it up. In my experience Nokogiri is always a pain to install,...
@bhollis Nokogiri continues to have many compatibility problems, last I checked it didn't work on x64 Windows and it's very buggy on JRuby. To install Nokogiri on this machine I...
Try changing the `host` option to `127.0.0.1`
Try `activate :live_reload, host: '127.0.0.1', port: '4567'`
Actually, leave off the `port` option - only change the host to `127.0.0.1`. It should be injected on any html page with a tag, you can check for a response...
Everything looks correct to me, could be a bug in the underlying `rack-livereload` middleware (which is what injects the tags) @tdreyno any ideas?
No real problem per se, I know that the HTML5 spec suggests the prefix and other highlighters like highlight.js have options for it (`:class_prefix`) - it's just semantics. With this...
Yea that's why I wrote this instead of jumping in with a PR right away. Rouge is planning on having more options for HTML output, this would supplement that as...
@christopherjanzen I haven't — I would code this up but it's hard to justify a potentially breaking change until there is a new major version of [Rouge](https://github.com/jneen/rouge). You can override...
Ah, well you need need Rouge's `find_fancy` method to automatically determine the type of code. You could simply [write out the HTML](https://github.com/vmg/redcarpet/blob/master/lib/redcarpet.rb#L39-L43) and manually add the language class to it...