An open API service indexing awesome lists of open source software.

https://github.com/kanghyojun/linky

Change plain text into HTML has <a> tag.
https://github.com/kanghyojun/linky

Last synced: 22 days ago
JSON representation

Change plain text into HTML has <a> tag.

Awesome Lists containing this project

README

          

linky
-----

Change plain text into HTML has ```` tag.

Getting started
===============

Call ``linky.linky``.

.. code-block:: python

from linky import linky

linky('Serching on https://google.com') # Serching on https://google.com

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 < on https://google.com

.. _Jinja: http://jinja.pocoo.org/