diff options
author | http://jneen.net/ <jneen@jneen.net> | 2016-06-15 11:32:08 -0700 |
---|---|---|
committer | http://jneen.net/ <jneen@jneen.net> | 2016-07-14 10:08:14 -0700 |
commit | 95d6174a0818230a9811d5d302c77760b49597b1 (patch) | |
tree | 8412e1d739f1edac1e3952742d8ea7c7f926f348 /lib/rouge | |
parent | 96c68c503340bf650a545872cb4e8767a1b00f5b (diff) | |
download | gitlab-ce-95d6174a0818230a9811d5d302c77760b49597b1.tar.gz |
remove the unused inline_theme feature
Diffstat (limited to 'lib/rouge')
-rw-r--r-- | lib/rouge/formatters/html_gitlab.rb | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/rouge/formatters/html_gitlab.rb b/lib/rouge/formatters/html_gitlab.rb index 2833dbddcf3..50b1db88c0e 100644 --- a/lib/rouge/formatters/html_gitlab.rb +++ b/lib/rouge/formatters/html_gitlab.rb @@ -26,15 +26,13 @@ module Rouge # [+lineanchorsid+] If lineanchors is true the name of the anchors can # be changed with lineanchorsid to e.g. foo-linenumber # (default: 'L'). - # [+inline_theme+] Inline CSS styles for the <pre> tag (default: false). def initialize( nowrap: false, cssclass: 'highlight', linenos: nil, linenostart: 1, lineanchors: false, - lineanchorsid: 'L', - inline_theme: nil + lineanchorsid: 'L' ) @nowrap = nowrap @cssclass = cssclass @@ -42,7 +40,6 @@ module Rouge @linenostart = linenostart @lineanchors = lineanchors @lineanchorsid = lineanchorsid - @inline_theme = Theme.find(inline_theme).new if inline_theme.is_a?(String) end def render(tokens) @@ -150,12 +147,7 @@ module Rouge if tok.shortname.empty? val else - if @inline_theme - rules = @inline_theme.style_for(tok).rendered_rules - "<span style=\"#{rules.to_a.join(';')}\"#{val}</span>" - else - "<span class=\"#{tok.shortname}\">#{val}</span>" - end + "<span class=\"#{tok.shortname}\">#{val}</span>" end end end |