class RougeLines::Formatters::HTMLInline

Public Class Methods

new(theme) click to toggle source
# File lib/rouge-lines/formatters/html_inline.rb, line 7
def initialize(theme)
  if theme.is_a?(Class) && theme < RougeLines::Theme
    @theme = theme.new
  elsif theme.is_a?(RougeLines::Theme)
    @theme = theme
  elsif theme.is_a?(String)
    @theme = RougeLines::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-lines/formatters/html_inline.rb, line 19
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