linkfy

Change plain text into HTML.


License
Other
Install
pip install linkfy==0.1.1

Documentation

linky

Change plain text into HTML has <a> tag.

Getting started

Call linky.linky.

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 <, >.

from linky import linky

linky('Serching < on https://google.com') # Serching &lt; on <a href="https://google.com">https://google.com</a>