Metadata-Version: 2.0
Name: pygments-style-rub
Version: 0.1.2
Summary: Ruhr-Uni Bochum Corporate Design colors for Pygments
Home-page: https://github.com/Holzhaus/pygments-style-rub
Author: Jan Holthuis
Author-email: jan.holthuis@ruhr-uni-bochum.de
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: pygments (>=1.4)

A `Pygments <http://pygments.org/>`_ style based on the
`Corporate Design <http://www.ruhr-uni-bochum.de/cd/>`_ of the
`Ruhr-University Bochum <https://www.ruhr-uni-bochum.de/>`_.

.. image:: preview.png

The color definitions have been taken from the `Corporate Design Manual
<https://www.ruhr-uni-bochum.de/cd/cd-2016/download/cd_manual_beta.pdf>`_.

``pygments-style-rub`` is compatible with Python 2 & 3.

Install the `current PyPI release
<https://pypi.python.org/pypi/pygments-style-rub>`__:

.. code:: shell-session

    $ pip install pygments-style-rub

Or install the development version from GitHub:

.. code:: shell-session

    $ pip install git+https://github.com/Holzhaus/pygments-style-rub

Usage
~~~~~

After installation, you can use ``rub`` like any other Pygments style, e.g.
on the command line:

.. code:: shell-session

    $ pygmentize -l python -O style=rub -o output.html code.py

Or you can use it with the
`minted package in LaTeX <https://www.ctan.org/pkg/minted>`_:

.. code:: tex

    \documentclass{article}
    \usepackage{minted}
    \usemintedstyle{rub}
    \begin{document}
        \inputminted{python}{code.py}
    \end{document}

License
~~~~~~~

This project has been released under the terms of the BSD-License. Please read
the ``LICENSE`` file for more information.


