require "rouge" require "htmlbeautifier" require "htmlentities" module Lookbook module CodeFormatter class << self def highlight(source, **opts) coder = HTMLEntities.new source = coder.decode source language = opts[:language] || "ruby" formatter = Formatter.new(**opts) lexer = Rouge::Lexer.find(language.to_s) || Rouge::Lexer.find("plaintext") formatter.format(lexer.lex(source)).html_safe end def beautify(source, **opts) language = opts[:language] || "html" source = source.strip result = language.downcase == "html" ? HtmlBeautifier.beautify(source) : source result.strip.html_safe end end end class Formatter < Rouge::Formatters::HTML def initialize(**opts) @opts = opts @highlight_lines = opts[:highlight_lines].to_a || [] @start_line = opts[:start_line] || 1 @language = opts[:language] end def stream(tokens, &block) lines = token_lines(tokens) yield "
" if @opts[:line_numbers] yield "
" lines.each.with_index do |line, i| yield "
#{line_number(i)}
" end yield "
" end yield "
"
      lines.each.with_index do |line_tokens, i|
        yield "
" line_tokens.each do |token, value| yield span(token, value) end yield "
" end yield "
" yield "
" end def highlighted?(i) @highlight_lines.include?(i + 1) end def line_number(i) @start_line + i end end end