Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
ca54d43f
Commit
ca54d43f
authored
Nov 10, 2012
by
Riyad Preukschas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix 500s because of "missing" lexer
parent
6cec9ed3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
lib/redcarpet/render/gitlab_html.rb
lib/redcarpet/render/gitlab_html.rb
+4
-2
No files found.
lib/redcarpet/render/gitlab_html.rb
View file @
ca54d43f
...
@@ -10,10 +10,12 @@ class Redcarpet::Render::GitlabHTML < Redcarpet::Render::HTML
...
@@ -10,10 +10,12 @@ class Redcarpet::Render::GitlabHTML < Redcarpet::Render::HTML
end
end
def
block_code
(
code
,
language
)
def
block_code
(
code
,
language
)
options
=
{
options:
{
encoding:
'utf-8'
}
}
if
Pygments
::
Lexer
.
find
(
language
)
if
Pygments
::
Lexer
.
find
(
language
)
Pygments
.
highlight
(
code
,
lexer:
language
,
options:
{
encoding:
'utf-8'
}
)
Pygments
.
highlight
(
code
,
options
.
merge
(
lexer:
language
.
downcase
)
)
else
else
Pygments
.
highlight
(
code
,
options
:
{
encoding:
'utf-8'
}
)
Pygments
.
highlight
(
code
,
options
)
end
end
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment