Qucs-S S-parameter Viewer & RF Synthesis Tools
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
pip._vendor.pygments.formatter.Formatter Class Reference
Inheritance diagram for pip._vendor.pygments.formatter.Formatter:
Inheritance graph
[legend]

Public Member Functions

 __init__ (self, **options)
 
 get_style_defs (self, arg='')
 
 format (self, tokensource, outfile)
 

Public Attributes

 style
 
 full
 
 title
 
 encoding
 
 options
 

Static Public Attributes

 name = None
 
list aliases = []
 
list filenames = []
 
bool unicodeoutput = True
 

Detailed Description

Converts a token stream to text.

Formatters should have attributes to help selecting them. These
are similar to the corresponding :class:`~pygments.lexer.Lexer`
attributes.

.. autoattribute:: name
   :no-value:

.. autoattribute:: aliases
   :no-value:

.. autoattribute:: filenames
   :no-value:

You can pass options as keyword arguments to the constructor.
All formatters accept these basic options:

``style``
    The style to use, can be a string or a Style subclass
    (default: "default"). Not used by e.g. the
    TerminalFormatter.
``full``
    Tells the formatter to output a "full" document, i.e.
    a complete self-contained document. This doesn't have
    any effect for some formatters (default: false).
``title``
    If ``full`` is true, the title that should be used to
    caption the document (default: '').
``encoding``
    If given, must be an encoding name. This will be used to
    convert the Unicode token strings to byte strings in the
    output. If it is "" or None, Unicode strings will be written
    to the output file, which most file-like objects do not
    support (default: None).
``outencoding``
    Overrides ``encoding`` if given.

Constructor & Destructor Documentation

◆ __init__()

pip._vendor.pygments.formatter.Formatter.__init__ (   self,
**  options 
)

Member Function Documentation

◆ format()

pip._vendor.pygments.formatter.Formatter.format (   self,
  tokensource,
  outfile 
)
This method must format the tokens from the `tokensource` iterable and
write the formatted version to the file object `outfile`.

Formatter options can control how exactly the tokens are converted.

Reimplemented in pip._vendor.pygments.formatters.img.ImageFormatter, pip._vendor.pygments.formatters.other.NullFormatter, pip._vendor.pygments.formatters.other.RawTokenFormatter, pip._vendor.pygments.formatters.other.TestcaseFormatter, pip._vendor.pygments.formatters.terminal.TerminalFormatter, and pip._vendor.pygments.formatters.terminal256.Terminal256Formatter.

◆ get_style_defs()

pip._vendor.pygments.formatter.Formatter.get_style_defs (   self,
  arg = '' 
)
This method must return statements or declarations suitable to define
the current style for subsequent highlighted text (e.g. CSS classes
in the `HTMLFormatter`).

The optional argument `arg` can be used to modify the generation and
is formatter dependent (it is standardized because it can be given on
the command line).

This method is called by the ``-S`` :doc:`command-line option <cmdline>`,
the `arg` is then given by the ``-a`` option.

Reimplemented in pip._vendor.pygments.formatters.img.ImageFormatter, pip._vendor.pygments.formatters.latex.LatexFormatter, and pip._vendor.pygments.formatters.html.HtmlFormatter.


The documentation for this class was generated from the following file: