Metadata-Version: 2.1
Name: foliantcontrib.templates.preprocessor
Version: 1.0.2
Summary: Preprocessor template for `foliant init` command.
Home-page: https://github.com/foliant-docs/foliantcontrib.templates.preprocessor
Author: Konstantin Molchanov
Author-email: moigagoo@live.com
License: MIT
Description: # Preprocessor Template for `foliant init` Command
        
        Template for a Foliant preprocessor. Instead of looking for an existing preprocessor, cloning it, and modifying its source, install this package and generate a preprocessor directory. As simple as:
        
        ```shell
        $ foliant init -t preprocessor
        ```
        ## Installation
        
        ```shell
        $ pip install --no-compile foliantcontrib.templates.preprocessor
        ```
        
        ## Usage
        
        ```shell
        $ foliant init -t preprocessor
        Enter the project name: Awesome Preprocessor
        ✔ Generating project
        ─────────────────────
        Project "Awesome Preprocessor" created in awesome-preprocessor
        ```
        
        Or:
        
        ```shell
        $ foliant init -t preprocessor -n "Awesome Preprocessor"
        ✔ Generating project
        ─────────────────────
        Project "Awesome Preprocessor" created in awesome-preprocessor
        ```
        
        Result:
        
        ```shell
        $ tree awesome-preprocessor
        .
        ├── changelog.md
        ├── foliant
        │   └── preprocessors
        │       └── awesome-preprocessor.py
        ├── LICENSE
        ├── README.md
        └── setup.py
        
        2 directories, 5 files
        ```
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Documentation
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
