├── .flake8 ├── .gitignore ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── LICENSE ├── Readme.md ├── example.rst ├── examples ├── example-0.expected └── example-0.rst ├── pyproject.toml ├── tests └── test_examples.py └── velin ├── __init__.py ├── __main__.py ├── examples_section_utils.py └── ref.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/Readme.md -------------------------------------------------------------------------------- /example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/example.rst -------------------------------------------------------------------------------- /examples/example-0.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/examples/example-0.expected -------------------------------------------------------------------------------- /examples/example-0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/examples/example-0.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/tests/test_examples.py -------------------------------------------------------------------------------- /velin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/velin/__init__.py -------------------------------------------------------------------------------- /velin/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/velin/__main__.py -------------------------------------------------------------------------------- /velin/examples_section_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/velin/examples_section_utils.py -------------------------------------------------------------------------------- /velin/ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carreau/velin/HEAD/velin/ref.py --------------------------------------------------------------------------------