8000 Updated the lexer used to highlight terminal blocks by javiereguiluz · Pull Request #12067 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Updated the lexer used to highlight terminal blocks #12067

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 31, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Updated the lexer used to highlight terminal blocks
  • Loading branch information
javiereguiluz committed Jul 31, 2019
commit 2e2a8691e4a837741003b1be189095a0a761a94f
2 changes: 1 addition & 1 deletion _build/_themes/_exts/symfonycom/sphinx/lexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class TerminalLexer(RegexLexer):
tokens = {
'root': [
('^\$', Generic.Prompt, 'bash-prompt'),
('^[^\n>]+>', Generic.Prompt, 'dos-prompt'),
('^C:\\[^\n>]+>', Generic.Prompt, 'dos-prompt'),
('^#.+$', Comment.Single),
('^.+$', Generic.Output),
],
Expand Down
0