Qucs-S S-parameter Viewer & RF Synthesis Tools
Loading...
Searching...
No Matches
Classes | Functions | Variables
pip._vendor.pygments.filters Namespace Reference

Classes

class  CodeTagFilter
 
class  ErrorToken
 
class  GobbleFilter
 
class  KeywordCaseFilter
 
class  NameHighlightFilter
 
class  RaiseOnErrorTokenFilter
 
class  SymbolFilter
 
class  TokenMergeFilter
 
class  VisibleWhitespaceFilter
 

Functions

 find_filter_class (filtername)
 
 get_filter_by_name (filtername, **options)
 
 get_all_filters ()
 
 _replace_special (ttype, value, regex, specialttype, replacefunc=lambda x:x)
 

Variables

dict FILTERS
 

Detailed Description

    pygments.filters
    ~~~~~~~~~~~~~~~~

    Module containing filter lookup functions and default
    filters.

    :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
    :license: BSD, see LICENSE for details.

Function Documentation

◆ find_filter_class()

pip._vendor.pygments.filters.find_filter_class (   filtername)
Lookup a filter by name. Return None if not found.

◆ get_all_filters()

pip._vendor.pygments.filters.get_all_filters ( )
Return a generator of all filter names.

◆ get_filter_by_name()

pip._vendor.pygments.filters.get_filter_by_name (   filtername,
**  options 
)
Return an instantiated filter.

Options are passed to the filter initializer if wanted.
Raise a ClassNotFound if not found.

Variable Documentation

◆ FILTERS

dict pip._vendor.pygments.filters.FILTERS
Initial value:
1= {
2 'codetagify': CodeTagFilter,
3 'keywordcase': KeywordCaseFilter,
4 'highlight': NameHighlightFilter,
5 'raiseonerror': RaiseOnErrorTokenFilter,
6 'whitespace': VisibleWhitespaceFilter,
7 'gobble': GobbleFilter,
8 'tokenmerge': TokenMergeFilter,
9 'symbols': SymbolFilter,
10}