Metadata-Version: 1.1
Name: moban-slim
Version: 0.0.2
Summary: Provide slim templating capability to moban.
Home-page: https://github.com/moremoban/moban-slim
Author: Charlie Liu, C.W et al
Author-email: wangc_2011@hotmail.com
License: MIT
Download-URL: https://github.com/moremoban/moban-slim/archive/0.0.2.tar.gz
Description: ================================================================================
        moban-slim
        ================================================================================
        
        .. image:: https://api.travis-ci.org/moremoban/moban-slim.svg
           :target: http://travis-ci.org/moremoban/moban-slim
        
        .. image:: https://codecov.io/github/moremoban/moban-slim/coverage.png
           :target: https://codecov.io/github/moremoban/moban-slim
        .. image:: https://badge.fury.io/py/moban-slim.svg
           :target: https://pypi.org/project/moban-slim
        
        .. image:: https://pepy.tech/badge/moban-slim/month
           :target: https://pepy.tech/project/moban-slim/month
        
        .. image:: https://img.shields.io/github/stars/moremoban/moban-slim.svg?style=social&maxAge=3600&label=Star
            :target: https://github.com/moremoban/moban-slim/stargazers
        
        
        With `slimish-jinja2 for Python 3 <https://pypi.org/project/slimish-jinja>`_, this library allow moban users to
        have slim template in their next documentation endeavour.
        
        Quick start
        ============
        
        Given a data.json file with the following content
        
        .. code-block::
        
            {
              "person": {
                "firstname": "Smith",
                "lastname": "Jones",
              },
            }
        
        .. code-block:: bash
        
        
           $ moban --template-type slim -c data.json  "{{person.firstname}} {{person.lastname}}"
           Slimming <p>{{first... to moban.output
           Slimmed 1 file.
           $ cat moban.output
           Smith Jones
        
        
        Installation
        ================================================================================
        
        
        You can install moban-slim via pip:
        
        .. code-block:: bash
        
            $ pip install moban-slim
        
        
        or clone it and install it:
        
        .. code-block:: bash
        
            $ git clone https://github.com/moremoban/moban-slim.git
            $ cd moban-slim
            $ python setup.py install
        
        Author
        ================================================================================
        
        Charlie Liu
        
        Contributors
        ================================================================================
        
        In alphabetical order:
        
        * `C. W. <https://github.com/chfw>`_
        * `John Vandenberg <https://github.com/jayvdb>`_
        * `PRAJWAL M <https://github.com/PrajwalM2212>`_
        
        Change log
        ================================================================================
        
        0.0.2 - 16-06-2020
        --------------------------------------------------------------------------------
        
        **Updated**
        
        #. `#1 <https://github.com/moremoban/moban-slim/issues/1>`_: support moban
           v0.3.8
        #. `#3 <https://github.com/moremoban/moban-slim/issues/3>`_: support moban
           v0.3.9
        #. `#5 <https://github.com/moremoban/moban-slim/issues/5>`_: support moban
           v.0.4.1
        #. `#6 <https://github.com/moremoban/moban-slim/issues/6>`_: support moban
           v6.0.0
        
        0.0.1 - 30-11-2018
        --------------------------------------------------------------------------------
        
        **First release**
        
        #. render slim files for moban
        
        
Keywords: python
Platform: UNKNOWN
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
