Skip to content

Commit

Permalink
Merge pull request #751 from ayaan-qadri/Fixing-Issue-#746
Browse files Browse the repository at this point in the history
Fixing issue #746
  • Loading branch information
geekygirlsarah authored Oct 5, 2024
2 parents c5ce882 + 25d76f7 commit f3f6408
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
4 changes: 4 additions & 0 deletions codethesaurus/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,5 +177,9 @@
}
}

SIMILAR_LEXERS = {
"clips": "prolog",
}

# Configure Django App for Heroku.
django_on_heroku.settings(locals(), test_runner=False, databases=False, staticfiles=True, logging=True)
13 changes: 12 additions & 1 deletion web/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
from pygments import highlight
from pygments.formatters.html import HtmlFormatter
from pygments.lexers import get_lexer_by_name
from pygments.util import ClassNotFound
from django.conf import settings

from web.models import (
Language,
Expand Down Expand Up @@ -307,6 +309,14 @@ def error_handler_500_server_error(request):
response = render(request, 'error500.html')
return HttpResponseServerError(response)

#get lexer
def get_highlighter(language):
SIMILAR_LEXERS = settings.SIMILAR_LEXERS
try:
lexer = get_lexer_by_name(language, startinline=True)
except ClassNotFound:
lexer = get_lexer_by_name(SIMILAR_LEXERS.get(language, "text"), startinline=True)
return lexer

# Helper functions
def format_code_for_display(concept_key, lang):
Expand All @@ -322,9 +332,10 @@ def format_code_for_display(concept_key, lang):
if lang.concept_unknown(concept_key) or lang.concept_code(concept_key) is None:
return "Unknown"
if lang.concept_implemented(concept_key):
lexer = get_highlighter(lang.key)
return highlight(
lang.concept_code(concept_key),
get_lexer_by_name(lang.key, startinline=True),
lexer,
HtmlFormatter()
)
return None
Expand Down

0 comments on commit f3f6408

Please sign in to comment.