Enable inline PHP syntax highlighting
Pygments has a "startinline" option which is only relevant for the PhpLexer. It allows syntax highlighting without the opening <?php tag. I believe this option is ignored for every other lexer. Could you either set this to true by default using the proposed change? Or could this be exposed as a setting somewhere in _config.yml? I can't think of a reason someone would not want this enabled.
This commit is contained in:
parent
75cc24c8d6
commit
1a1c8681a4
@ -22,14 +22,14 @@ module HighlightCode
|
|||||||
highlighted_code = File.read(path)
|
highlighted_code = File.read(path)
|
||||||
else
|
else
|
||||||
begin
|
begin
|
||||||
highlighted_code = Pygments.highlight(code, :lexer => lang, :formatter => 'html', :options => {:encoding => 'utf-8'})
|
highlighted_code = Pygments.highlight(code, :lexer => lang, :formatter => 'html', :options => {:encoding => 'utf-8', :startinline => true})
|
||||||
rescue MentosError
|
rescue MentosError
|
||||||
raise "Pygments can't parse unknown language: #{lang}."
|
raise "Pygments can't parse unknown language: #{lang}."
|
||||||
end
|
end
|
||||||
File.open(path, 'w') {|f| f.print(highlighted_code) }
|
File.open(path, 'w') {|f| f.print(highlighted_code) }
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
highlighted_code = Pygments.highlight(code, :lexer => lang, :formatter => 'html', :options => {:encoding => 'utf-8'})
|
highlighted_code = Pygments.highlight(code, :lexer => lang, :formatter => 'html', :options => {:encoding => 'utf-8', :startinline => true})
|
||||||
end
|
end
|
||||||
highlighted_code
|
highlighted_code
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user