This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Jekyll | |
| module Tags | |
| class HighlightBlock < Liquid::Block | |
| def render_codehighlighter(context, code) | |
| #The div is required because RDiscount blows ass | |
| <<-HTML | |
| <div> | |
| <pre class='#{@lang}'><code class='#{@lang}'>#{h(code).strip}</code></pre> | |
| </div> | |
| HTML |
OlderNewer