You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Syntax highlighting is an important aspect of user experience. We want to introduce syntax highlighting in the notebook frontend for supported languages.
The text was updated successfully, but these errors were encountered:
Syntax highlighting w/ the Jupyter project is handled on frontend side and uses the lexers provided w/ the pygment library (http://pygments.org/docs/lexers). Which lexer is used for syntax highlighting is set in the Jupyter Kernel configuration, and consequently must be set at installation time:
'language_info': {
# Pygments lexer, for highlighting# Only needed if it differs from the 'name''pygments_lexer': str,
...
}
Syntax highlighting is an important aspect of user experience. We want to introduce syntax highlighting in the notebook frontend for supported languages.
The text was updated successfully, but these errors were encountered: