class Rouge::Formatters::HTMLInline
Public Class Methods
new(theme)
click to toggle source
# File lib/rouge/formatters/html_inline.rb, line 5 def initialize(theme) @theme = theme end
Public Instance Methods
safe_span(tok, safe_val)
click to toggle source
# File lib/rouge/formatters/html_inline.rb, line 9 def safe_span(tok, safe_val) return safe_val if tok == Token::Tokens::Text rules = @inline_theme.style_for(tok).rendered_rules "<span style=\"#{rules.to_a.join(';')}\">#{safe_val}</span>" end