Python pygments.lexers.BashLexer() Examples
The following are 5
code examples of pygments.lexers.BashLexer().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
pygments.lexers
, or try the search function
.
Example #1
Source File: utils.py From airflow with Apache License 2.0 | 5 votes |
def get_attr_renderer(): """Return Dictionary containing different Pygements Lexers for Rendering & Highlighting""" return { 'bash_command': lambda x: render(x, lexers.BashLexer), 'hql': lambda x: render(x, lexers.SqlLexer), 'sql': lambda x: render(x, lexers.SqlLexer), 'doc': lambda x: render(x, lexers.TextLexer), 'doc_json': lambda x: render(x, lexers.JsonLexer), 'doc_rst': lambda x: render(x, lexers.RstLexer), 'doc_yaml': lambda x: render(x, lexers.YamlLexer), 'doc_md': wrapped_markdown, 'python_callable': lambda x: render(get_python_source(x), lexers.PythonLexer), }
Example #2
Source File: ipython.py From ptpython with BSD 3-Clause "New" or "Revised" License | 5 votes |
def create_lexer(): g = create_ipython_grammar() return GrammarLexer( g, lexers={ "percent": SimpleLexer("class:pygments.operator"), "magic": SimpleLexer("class:pygments.keyword"), "filename": SimpleLexer("class:pygments.name"), "python": PygmentsLexer(PythonLexer), "system": PygmentsLexer(BashLexer), }, )
Example #3
Source File: pygmentize.py From healthchecks with BSD 3-Clause "New" or "Revised" License | 5 votes |
def handle(self, *args, **options): try: from pygments import lexers except ImportError: self.stdout.write("This command requires the Pygments package.") self.stdout.write("Please install it with:\n\n") self.stdout.write(" pip install Pygments\n\n") return # Invocation examples _process("bash_curl", lexers.BashLexer()) _process("bash_wget", lexers.BashLexer()) _process("browser", lexers.JavascriptLexer()) _process("crontab", lexers.BashLexer()) _process("cs", lexers.CSharpLexer()) _process("node", lexers.JavascriptLexer()) _process("go", lexers.GoLexer()) _process("python_urllib2", lexers.PythonLexer()) _process("python_requests", lexers.PythonLexer()) _process("python_requests_fail", lexers.PythonLexer()) _process("python_requests_start", lexers.PythonLexer()) _process("python_requests_payload", lexers.PythonLexer()) _process("php", lexers.PhpLexer()) _process("powershell", lexers.shell.PowerShellLexer()) _process("powershell_inline", lexers.shell.BashLexer()) _process("ruby", lexers.RubyLexer())
Example #4
Source File: test_shell.py From pygments with BSD 2-Clause "Simplified" License | 5 votes |
def lexer_bash(): yield BashLexer()
Example #5
Source File: lexer.py From pyvim with BSD 3-Clause "New" or "Revised" License | 5 votes |
def create_command_lexer(): """ Lexer for highlighting of the command line. """ return GrammarLexer(COMMAND_GRAMMAR, lexers={ 'command': SimpleLexer('class:commandline.command'), 'location': SimpleLexer('class:commandline.location'), 'shell_command': PygmentsLexer(BashLexer), })