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 "
"
lines.each.with_index do |line_tokens, i|
yield ""
line_tokens.each do |token, value|
yield span(token, value)
end
yield ""
end
yield "
"
yield "