File: C:/Ruby27-x64/lib/ruby/gems/2.7.0/gems/rouge-3.26.1/lib/rouge/formatters/html_inline.rb
# -*- coding: utf-8 -*- #
# frozen_string_literal: true
module Rouge
module Formatters
class HTMLInline < HTML
tag 'html_inline'
def initialize(theme)
if theme.is_a?(Class) && theme < Rouge::Theme
@theme = theme.new
elsif theme.is_a?(Rouge::Theme)
@theme = theme
elsif theme.is_a?(String)
@theme = Rouge::Theme.find(theme).new
else
raise ArgumentError, "invalid theme: #{theme.inspect}"
end
end
def safe_span(tok, safe_val)
return safe_val if tok == Token::Tokens::Text
rules = @theme.style_for(tok).rendered_rules
"<span style=\"#{rules.to_a.join(';')}\">#{safe_val}</span>"
end
end
end
end