class Rouge::Formatters::HTMLInline

Public Class Methods

new(theme) click to toggle source
# File lib/rouge/formatters/html_inline.rb, line 8
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

Public Instance Methods

safe_span(tok, safe_val) click to toggle source
# File lib/rouge/formatters/html_inline.rb, line 20
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