Metadata-Version: 1.1
Name: linkfy
Version: 0.1.0
Summary: Change plain text into HTML.
Home-page: https://github.com/admire93/linky
Author: Kang Hyojun
Author-email: iam.kanghyojun@gmail.com
License: UNKNOWN
Description: linky
        -----
        
        Change plain text into HTML has ``<a>`` tag.
        
        
        Getting started
        ===============
        
        Call ``linky.linky``.
        
        .. code-block:: python
           
           from linky import linky
        
           linky('Serching on https://google.com') # Serching on <a href="https://google.com">https://google.com</a>
        
        Usually thease function is used on Jinja_, so it provide options to
        escape some HTML special characters like ``<``, ``>``.
        
        
        .. code-block:: python
        
           from linky import linky
        
           linky('Serching < on https://google.com') # Serching &lt; on <a href="https://google.com">https://google.com</a>
        
        
        .. _Jinja: http://jinja.pocoo.org/
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
