Metadata-Version: 2.1
Name: pygments-anyscript
Version: 1.2.1
Summary: Pygments lexer and style for the AnyScript language
Home-page: https://github.com/AnyBody/pygments-anyscript
Author: Morten Enemark Lund
Author-email: mel@anybodytech.com
License: MIT license
Keywords: pygments,pygments_anyscript,lexer,anyscript,AnyBody Modeling System
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: pygments

=========================
Pygments AnyScript plugin
=========================

.. image:: https://img.shields.io/travis/AnyBody/pygments-anyscript.svg
    :target: https://travis-ci.org/AnyBody/pygments-anyscript
.. image:: https://img.shields.io/pypi/v/pygments_anyscript.svg
    :target: https://pypi.python.org/pypi/pygments_anyscript
.. image:: https://anaconda.org/conda-forge/pygments_anyscript/badges/version.svg
    :target: https://anaconda.org/conda-forge/pygments_anyscript
.. image:: https://anaconda.org/conda-forge/pygments_anyscript/badges/downloads.svg
    :target: 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 setup.py 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



=======
History
=======

1.2.1 (2018-09-13)
------------------

* Try to automatic deplay to pypi using travis

1.2.0 (2018-09-13)
------------------

* Update class, function, and global names to support newest version of 
  the AnyScript language

1.1.0 (2017-08-02)
------------------

* Add support for Body Model parameters for AMMR 2.0.
* Update AnyScriptDoc lexer to ignore syntax error etc. This makes
  it possible to use the lexer with sphinx even if the code is not
  sytactically correct.


1.0.0 (2017-08-02)
------------------

* Update documentation and release as 1.0.0


0.2.0 (2017-08-02)
------------------

* Split Lexer for AnyScript documentation into its own ``AnyScriptDocLexer``.
* Update the AnyScriptStyle to match the look in the AnyBody Modeling System.


0.1.0 (2017-08-01)
------------------

* First release on PyPI.


