Best Python code snippet using robotframework
directives.py
Source:directives.py  
...38    from docutils import nodes39    from docutils.parsers.rst import directives40    from pygments import highlight41    from pygments.lexers import get_lexer_by_name, TextLexer42    def pygments_directive(name, arguments, options, content, lineno,43                        content_offset, block_text, state, state_machine):44        try:45            lexer = get_lexer_by_name(arguments[0])46        except ValueError:47            # no lexer found - use the text one instead of an exception48            lexer = TextLexer()49        # take an arbitrary option if more than one is given50        formatter = options and VARIANTS[options.keys()[0]] or DEFAULT51        parsed = highlight(u'\n'.join(content), lexer, formatter)52        parsed = '<div class="codeblock">%s</div>' % parsed53        return [nodes.raw('', parsed, format='html')]54    pygments_directive.arguments = (1, 0, 1)55    pygments_directive.content = 156    pygments_directive.options = dict([(key, directives.flag) for key in VARIANTS])...sourcecode.py
Source:sourcecode.py  
...37from docutils import nodes38from docutils.parsers.rst import directives39from pygments import highlight40from pygments.lexers import get_lexer_by_name, TextLexer41def pygments_directive(name, arguments, options, content, lineno,42                       content_offset, block_text, state, state_machine):43    try:44        lexer = get_lexer_by_name(arguments[0])45    except ValueError:46        # no lexer found - use the text one instead of an exception47        lexer = TextLexer()48    # take an arbitrary option if more than one is given49    formatter = options and VARIANTS[options.keys()[0]] or DEFAULT50    parsed = highlight(u'\n'.join(content), lexer, formatter)51    parsed = '<div class="codeblock">%s</div>' % parsed52    return [nodes.raw('', parsed, format='html')]53pygments_directive.arguments = (1, 0, 1)54pygments_directive.content = 155pygments_directive.options = dict([(key, directives.flag) for key in VARIANTS])...reSTpygments.py
Source:reSTpygments.py  
...37from docutils import nodes38from docutils.parsers.rst import directives39from pygments import highlight40from pygments.lexers import get_lexer_by_name, TextLexer41def pygments_directive(name, arguments, options, content, lineno,42                       content_offset, block_text, state, state_machine):43    try:44        lexer = get_lexer_by_name(arguments[0])45    except ValueError:46        # no lexer found - use the text one instead of an exception47        lexer = TextLexer()48    # take an arbitrary option if more than one is given49    formatter = options and VARIANTS[options.keys()[0]] or DEFAULT50    parsed = highlight(u'\n'.join(content), lexer, formatter)51    parsed = '<div class="codeblock">%s</div>' % parsed52    return [nodes.raw('', parsed, format='html')]53pygments_directive.arguments = (1, 0, 1)54pygments_directive.content = 155pygments_directive.options = dict([(key, directives.flag) for key in VARIANTS])...__init__.py
Source:__init__.py  
...37from docutils import nodes38from docutils.parsers.rst import directives39from pygments import highlight40from pygments.lexers import get_lexer_by_name, TextLexer41def pygments_directive(name, arguments, options, content, lineno,42                       content_offset, block_text, state, state_machine):43    try:44        lexer = get_lexer_by_name(arguments[0])45    except ValueError:46        # no lexer found - use the text one instead of an exception47        lexer = TextLexer()48    # take an arbitrary option if more than one is given49    formatter = options and VARIANTS[options.keys()[0]] or DEFAULT50    parsed = highlight(u'\n'.join(content), lexer, formatter)51    parsed = '<div class="codeblock">%s</div>' % parsed52    return [nodes.raw('', parsed, format='html')]53pygments_directive.arguments = (1, 0, 1)54pygments_directive.content = 155pygments_directive.options = dict([(key, directives.flag) for key in VARIANTS])...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
