Solidity lexer for Pygments (includes Yul intermediate language)
Project description
Solidity lexer for Pygments, distributed as a PyPI package.
If you want pretty syntax highlighting in documentation for Solidity files, and you’re using Pygments, this might just be the thing for you.
Currently, Solidity keywords up to version 0.8.0 are included, to the best of my ability. MRs are welcome!
The Yul intermediate language is also supported, including for stand-alone code blocks.
Installation
Set up your virtual environment, no matter how you do it.
% virtualenv .virtualenv/`basename $(pwd)`
% source .virtualenv/`basename $(pwd)`/bin/activate
Then install via PyPI:
% pip install pygments-lexer-solidity
Or from a local git repo:
% pip install -r requirements.txt
% pip install -e .
Usage
Depends on doc-building infrastructure.
Sphinx
Have this in Sphinx’s conf.py:
from sphinx.highlighting import lexers
from pygments_lexer_solidity import SolidityLexer, YulLexer
lexers['solidity'] = SolidityLexer()
lexers['yul'] = YulLexer()
Then use .. code-block:: solidity for Solidity code blocks, or .. code-block:: yul for Yul.
Command-line
To test a local copy of the lexer on the CLI:
% pygmentize -x -l pygments_lexer_solidity/lexer.py:SolidityLexer example.sol
To generate a colorised HTML file:
% pygmentize -v -O full,style=fruity -o example.sol.html example.sol
License
BSD 2-clause simplified. See LICENSE.txt.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pygments-lexer-solidity-0.7.0.tar.gz
.
File metadata
- Download URL: pygments-lexer-solidity-0.7.0.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a347fd96981838331b6d98b0f891776908a49406d343ff2a40a6a1c8475a9350 |
|
MD5 | 22b03aa0709ee1ef4878f2ac5e65ef08 |
|
BLAKE2b-256 | ced6294f7957572e9604fdf11fb4acf5273735d7eb8c695a983f29a74846ed88 |