Metadata-Version: 2.0
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
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
Requires-Dist: MarkupSafe (>=0.23)
Provides-Extra: dev
Requires-Dist: flake8; extra == 'dev'
Requires-Dist: import-order; extra == 'dev'
Provides-Extra: tests
Requires-Dist: pytest (>=2.7.0); extra == 'tests'
Requires-Dist: tox; extra == 'tests'

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/


