Metadata-Version: 2.1
Name: pygments_anyscript
Version: 1.3.0
Summary: Pygments lexer and style for the AnyScript language. AnyScript is the
Author-email: Morten Enemark Lund <mel@anybodytech.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: pygments
Requires-Dist: pytest ; extra == "test"
Project-URL: Home, https://github.com/AnyBody/pygments-anyscript
Provides-Extra: test

# Pygments AnyScript plugin

[![pygments_anyscript](https://img.shields.io/pypi/v/pygments_anyscript.svg)](https://pypi.python.org/pypi/pygments_anyscript)
[![pygments_anyscript](https://anaconda.org/conda-forge/pygments_anyscript/badges/version.svg)](https://anaconda.org/conda-forge/pygments_anyscript)
[![pygments_anyscript](https://anaconda.org/conda-forge/pygments_anyscript/badges/downloads.svg)](https://anaconda.org/conda-forge/pygments_anyscript)


Pygments lexer and style for the AnyScript language. AnyScript is the
scripting langugage used for the AnyBody Modeling System; a system for
multibody musculoskeletal analysis.


## Installation

* **Pip:** Run ``pip install pygments-anyscript``
* **Conda:** Run ``conda -c conda-forge pygments_anyscript``
* **Source:** Download source and execute ``python -m pip install .``

Requirements
------------

 * pygments

Usage
-----

The lexer and style can be used with the Pygments api like any other lexer or style.

::

  $ pygmentize -l AnyScript MyAnyScriptFile.any
  $ pygmentize -l AnyScript -O style=anyscript MyAnyScriptFile.any
  $ pygmentize -l AnyScript -f html -O full,style=anyscript -o  MyAnyScriptFile.html MyAnyScriptFile.any


