pyfcstm.highlight
Syntax highlighting package for the FCSTM DSL.
This package exposes Pygments lexer support for the FCSTM (Finite State Machine) domain-specific language. It provides a public entry point to the lexer implementation used by syntax highlighting tools and editors.
The package contains the following main components:
pyfcstm.highlight.pygments_lexer.FcstmLexer- Pygments lexer for FCSTM
Example:
>>> from pyfcstm.highlight import FcstmLexer
>>> lexer = FcstmLexer()
>>> lexer.name
'FCSTM'
__all__
- pyfcstm.highlight.__all__ = ['FcstmLexer']
Built-in mutable sequence.
If no argument is given, the constructor creates a new empty list. The argument must be an iterable if specified.