Class: Rouge::CSSTheme
Direct Known Subclasses
Themes::Base16, Themes::Colorful, Themes::Github, Themes::ThankfulEyes
Constant Summary
Constants included from Token::Tokens
Token::Tokens::Num, Token::Tokens::Str
Instance Method Summary collapse
-
#initialize(opts = {}) ⇒ CSSTheme
constructor
A new instance of CSSTheme.
- #render {|"#{@scope} table { border-spacing: 0; }"| ... } ⇒ Object
- #style_for(tok) ⇒ Object
Methods inherited from Theme
find, get_own_style, get_style, name, palette, registry, render, style, #styles, styles
Methods included from Token::Tokens
Constructor Details
#initialize(opts = {}) ⇒ CSSTheme
Returns a new instance of CSSTheme.
135 136 137 |
# File 'lib/rouge/theme.rb', line 135 def initialize(opts={}) @scope = opts[:scope] || '.highlight' end |
Instance Method Details
#render {|"#{@scope} table { border-spacing: 0; }"| ... } ⇒ Object
139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'lib/rouge/theme.rb', line 139 def render(&b) return enum_for(:render).to_a.join("\n") unless b # shared styles for tableized line numbers yield "#{@scope} table { border-spacing: 0; }" yield "#{@scope} table td { padding: 5px; }" yield "#{@scope} table .gutter { text-align: right; }" styles.each do |tok, style| style.render(css_selector(tok), &b) end end |
#style_for(tok) ⇒ Object
152 153 154 |
# File 'lib/rouge/theme.rb', line 152 def style_for(tok) self.class.get_style(tok) end |