Fix Pygments 500 error if lexer not found by name. Use first alias instead. fixes #4473, #4451

This commit is contained in:
Robert Schilling 2013-07-07 19:00:07 +02:00
parent c04e973327
commit db325ef940
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ class Redcarpet::Render::GitlabHTML < Redcarpet::Render::HTML
def block_code(code, language)
options = { options: {encoding: 'utf-8'} }
lexer = Pygments::Lexer.find(language) # language can be an alias
options.merge!(lexer: lexer.name.downcase) if lexer # downcase is required
options.merge!(lexer: lexer.aliases[0].downcase) if lexer # downcase is required
# New lines are placed to fix an rendering issue
# with code wrapped inside <h1> tag for next case: